Port to occ7.2:

+ replace use of StlMesh classes as they have been removed
This commit is contained in:
wmayer
2017-09-02 00:26:04 +02:00
parent 79d399e43e
commit fd5e7768dd
4 changed files with 162 additions and 94 deletions

View File

@@ -62,6 +62,10 @@ class AppExport ComplexGeoData: public Base::Persistence, public Base::Handled
public:
struct Line {uint32_t I1; uint32_t I2;};
struct Facet {uint32_t I1; uint32_t I2; uint32_t I3;};
struct Domain {
std::vector<Base::Vector3d> points;
std::vector<Facet> facets;
};
/// Constructor
ComplexGeoData(void);