Example #1
0
 /// <summary>
 /// Construct a IfcRelConnectsPortToElement with all required attributes.
 /// </summary>
 public IfcRelConnectsPortToElement(IfcGloballyUniqueId globalId, IfcPort relatingPort, IfcDistributionElement relatedElement) : base(globalId)
 {
     RelatingPort   = relatingPort;
     RelatedElement = relatedElement;
 }
Example #2
0
 public IfcRelConnectsPortToElement(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcPort relatingPort, IfcDistributionElement relatedElement) : base(globalId, ownerHistory, name, description)
 {
     RelatingPort   = relatingPort;
     RelatedElement = relatedElement;
 }
Example #3
0
        }                                                    // optional


        /// <summary>
        /// Construct a IfcRelConnectsPorts with all required attributes.
        /// </summary>
        public IfcRelConnectsPorts(IfcGloballyUniqueId globalId, IfcPort relatingPort, IfcPort relatedPort) : base(globalId)
        {
            RelatingPort = relatingPort;
            RelatedPort  = relatedPort;
        }