Пример #1
0
        public virtual BIMProperty getBoundedPropertyValue(Pointer paramPointer)
        {
            string str1    = IfcEngineUtils.getStringAttributeBN(paramPointer, "Name");
            double?double1 = IfcEngineUtils.getDoubleAttributeBN(paramPointer, "UpperBoundValue");
            double?double2 = IfcEngineUtils.getDoubleAttributeBN(paramPointer, "LowerBoundValue");
            string str2    = "U: " + double1 + " L: " + double2;

            return(new BIMProperty(str1, 0, false, str2, 0.0D));
        }
Пример #2
0
        public virtual BIMProperty getLengthPropertyInMM(Pointer paramPointer, string paramString)
        {
            double?double = IfcEngineUtils.getDoubleAttributeBN(paramPointer, paramString);

            return(new BIMProperty(paramString, BIMQuantityType.QTY_MILLI_METER, true, "", double.Value));
        }