GeometryGym.Ifc.IfcBuilding.addStorey C# (CSharp) Méthode

addStorey() private méthode

private addStorey ( IfcBuildingStorey s ) : bool
s IfcBuildingStorey
Résultat bool
        internal new bool addStorey(IfcBuildingStorey s)
        {
            return base.addStorey(s);
        }

Usage Example

Exemple #1
0
 public IfcBuildingStorey(IfcBuilding host, string name, double elev)
     : base(new IfcLocalPlacement(host.Placement, new IfcAxis2Placement3D(new IfcCartesianPoint(host.mDatabase, 0, 0, elev))))
 {
     host.addStorey(this);
     Name = name;
     Elevation = elev;
 }