コード例 #1
0
        public override bool Equals(object obj)
        {
            // Check for null
            if (obj == null)
            {
                return(false);
            }

            // Check for type
            if (this.GetType() != obj.GetType())
            {
                return(false);
            }

            // Cast as IfcRoot
            IfcStructuralConnectionCondition root = (IfcStructuralConnectionCondition)obj;

            return(this == root);
        }
コード例 #2
0
 public override void IfcParse(int propIndex, IPropertyValue value)
 {
     switch (propIndex)
     {
         case 0:
         case 1:
         case 2:
         case 3:
             base.IfcParse(propIndex, value);
             break;
         case 4:
             _relatingStructuralMember = (IfcStructuralMember) value.EntityVal;
             break;
         case 5:
             _relatedStructuralConnection = (IfcStructuralConnection) value.EntityVal;
             break;
         case 6:
             _appliedCondition = (IfcBoundaryCondition) value.EntityVal;
             break;
         case 7:
             _additionalConditions = (IfcStructuralConnectionCondition) value.EntityVal;
             break;
         case 8:
             _supportedLength = value.RealVal;
             break;
         case 9:
             _conditionCoordinateSystem = (IfcAxis2Placement3D) value.EntityVal;
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }