BIMHome v1.0.0
BIMHome接口文档说明
Block.h
浏览该文件的文档.
1/************************************************************************
2* @file Block.h
3*
4* @brief 三维块
5*
6* @details 三维块
7*
8* @author lirf
9*
10* @version 1.0
11*
12* @date 2025-6-7
13*
14* @license 北京华科软科技有限公司
15*
16*************************************************************************/
17
18#ifndef BIMHOMEBASE_BLOCK_H
19#define BIMHOMEBASE_BLOCK_H
20
21#include "Base/Math/Geometry/Geometry.h"
22
23namespace Base
24{
25 //块
26 class BaseExport Block :public Geometry {
27 public:
34 Block(const std::vector<Base::Geometry*>& geoList);
35 virtual ~Block();
36 std::vector<Geometry*> getGeometryList()const;
37 private:
38 std::vector<Geometry*> mGeoLists;
39 };
40}
41
42#endif
std::vector< Geometry * > getGeometryList() const
virtual ~Block()
std::vector< Geometry * > mGeoLists
Definition Block.h:38
Block(const std::vector< Base::Geometry * > &geoList)
构造三维块
Definition Block.h:26
Definition Geometry.h:81
Definition BaseFigureFactory.h:24