mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-25 04:04:35 +00:00
18 lines
310 B
C++
18 lines
310 B
C++
|
|
// Chunk.h
|
||
|
|
#ifndef CHUNK_H
|
||
|
|
#define CHUNK_H
|
||
|
|
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
namespace IfcGeom {
|
||
|
|
struct chunk {
|
||
|
|
std::vector<double> verts;
|
||
|
|
std::vector<int> faces;
|
||
|
|
std::vector<int> materials;
|
||
|
|
std::vector<int> material_ids;
|
||
|
|
std::vector<std::vector<float>> colours;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|