mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-12 14:33:28 +00:00
- Added id (ISO 10303-21 Table 2: ENTITY_INSTANCE_NAME) to IfcGeomObject. Thanks to laurencepike.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user