Blame view

legacy/rtsFilamentNetwork.h 469 Bytes
f1402849   dmayerich   renewed commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  #ifndef RTSFILAMENTNETWORK_H

  #define RTSFILAMENTNETWORK_H

  

  #include "rtsLinearAlgebra.h"

  #include "objJedi.h"

  #include <vector>

  #include <fstream>

  

  using namespace std;

  

  

  class rtsFilamentNetwork

  {

  protected:

  	rtsOBJ* network;

  	int fib_load(const char* filename);

  

  public:

  	rtsFilamentNetwork(){network = new rtsOBJ();}

  

  	virtual int LoadFIB(const char* filename);

  	void PrintProperties();

  	void PrintNetwork();

  

  };

  	

  

  

  #endif