Exemple #1
0
 public IfcPropertyTableValue(IfcIdentifier name, IfcText description, List <IfcValue> definingValues, List <IfcValue> definedValues, IfcText expression, IfcUnit definingUnit, IfcUnit definedUnit, IfcCurveInterpolationEnum curveInterpolation) : base(name, description)
 {
     DefiningValues     = definingValues;
     DefinedValues      = definedValues;
     Expression         = expression;
     DefiningUnit       = definingUnit;
     DefinedUnit        = definedUnit;
     CurveInterpolation = curveInterpolation;
 }
Exemple #2
0
		internal IfcCurveInterpolationEnum mCurveInterpolation = IfcCurveInterpolationEnum.NOTDEFINED;// : :	OPTIONAL IfcCurveInterpolationEnum; 

		internal IfcPropertyTableValue(IfcPropertyTableValue q) : base(q) { mDefiningValues = new List<IfcValue>(q.mDefiningValues.ToArray()); mDefinedValues = new List<IfcValue>(q.mDefinedValues.ToArray()); mExpression = q.mExpression; mDefiningUnit = q.mDefiningUnit; mDefinedUnit = q.mDefinedUnit; mCurveInterpolation = q.mCurveInterpolation; }