- Added id (ISO 10303-21 Table 2: ENTITY_INSTANCE_NAME) to IfcGeomObject. Thanks to laurencepike.

This commit is contained in:
Thomas Krijnen
2011-10-08 09:01:35 +00:00
parent a9143655c3
commit 69ad96df25
3 changed files with 15 additions and 12 deletions
+2 -1
View File
@@ -90,11 +90,12 @@ namespace IfcGeomObjects {
class IfcGeomObject {
public:
int id;
std::string name;
std::string type;
std::vector<float> matrix;
IfcMesh* mesh;
IfcGeomObject( const std::string& n, const std::string& t, gp_Trsf trsf, IfcMesh* m );
IfcGeomObject(int i, const std::string& n, const std::string& t, gp_Trsf trsf, IfcMesh* m);
};
extern bool Init(const char* fn, bool world_coords = false);