コード例 #1
0
ファイル: Building.cs プロジェクト: 15831944/CADTo3D-1
 public Building(string buildingName, Point3D _location)
 {
     CadConfig = new CADConfig();
     Floors    = new List <FloorBase>();
     Name      = buildingName;
     Location  = _location;
 }
コード例 #2
0
ファイル: Building.cs プロジェクト: 15831944/CADTo3D-1
 public Building(string buildingName, Point3D _location, double _zeroLvl)
 {
     CadConfig = new CADConfig();
     Floors    = new List <FloorBase>();
     Name      = buildingName;
     Location  = _location;
     ZeroLevel = _zeroLvl;
 }
コード例 #3
0
 public Building(string buildingName)
 {
     CadConfig = new CADConfig();
     Floors    = new List <IFloor>();
     Name      = buildingName;
 }