示例#1
0
        private static IfcPlate ToIfc(this Panel panel,
                                      IfcLocalPlacement localPlacement, IfcProductDefinitionShape shape)
        {
            var plate = new IfcPlate(IfcGuid.ToIfcGuid(Guid.NewGuid()), null,
                                     null, null, null, localPlacement, shape, null);

            return(plate);
        }
        private static IfcPlate ToIfc(this Panel panel, Guid id,
                                      IfcLocalPlacement localPlacement, IfcProductDefinitionShape shape)
        {
            var plate = new IfcPlate(IfcGuid.ToIfcGuid(id), null,
                                     null, null, null, localPlacement, shape, null, IfcPlateTypeEnum.NOTDEFINED);

            return(plate);
        }
 internal XbimPlateCommonProperties(IfcPlate plate) : base(plate, "Pset_PlateCommon") { }
示例#4
0
 internal XbimPlate(XbimDocument document, IfcPlate plate)
     : base(document)
 {
     _ifcBuildingElement = plate;
 }
 internal XbimPlateQuantities(IfcPlate plate) : base(plate, "Platequantities") { }