public IfcRelConnectsStructuralMember(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcStructuralMember relatingStructuralMember, IfcStructuralConnection relatedStructuralConnection, IfcBoundaryCondition appliedCondition, IfcStructuralConnectionCondition additionalConditions, IfcLengthMeasure supportedLength, IfcAxis2Placement3D conditionCoordinateSystem) : base(globalId, ownerHistory, name, description)
 {
     RelatingStructuralMember    = relatingStructuralMember;
     RelatedStructuralConnection = relatedStructuralConnection;
     AppliedCondition            = appliedCondition;
     AdditionalConditions        = additionalConditions;
     SupportedLength             = supportedLength;
     ConditionCoordinateSystem   = conditionCoordinateSystem;
 }
Пример #2
0
        public IfcStructuralConnection(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcBoundaryCondition appliedCondition) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation)
        {
            ConnectsStructuralMembers = new List <IfcRelConnectsStructuralMember>();

            AppliedCondition = appliedCondition;
        }
 public IfcStructuralCurveConnection(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcBoundaryCondition appliedCondition, IfcDirection axis) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, appliedCondition)
 {
     Axis = axis;
 }
Пример #4
0
 public IfcRelConnectsWithEccentricity(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcStructuralMember relatingStructuralMember, IfcStructuralConnection relatedStructuralConnection, IfcBoundaryCondition appliedCondition, IfcStructuralConnectionCondition additionalConditions, IfcLengthMeasure supportedLength, IfcAxis2Placement3D conditionCoordinateSystem, IfcConnectionGeometry connectionConstraint) : base(globalId, ownerHistory, name, description, relatingStructuralMember, relatedStructuralConnection, appliedCondition, additionalConditions, supportedLength, conditionCoordinateSystem)
 {
     ConnectionConstraint = connectionConstraint;
 }
Пример #5
0
 public IfcStructuralPointConnection(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcBoundaryCondition appliedCondition, IfcAxis2Placement3D conditionCoordinateSystem) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, appliedCondition)
 {
     ConditionCoordinateSystem = conditionCoordinateSystem;
 }