GeometryGym.Ifc.IfcGrid.postParseRelate C# (CSharp) Méthode

postParseRelate() private méthode

private postParseRelate ( ) : void
Résultat void
        internal override void postParseRelate()
        {
            base.postParseRelate();
            List<IfcGridAxis> axes = UAxes;
            for (int icounter = 0; icounter < axes.Count; icounter++)
                axes[icounter].mPartOfU = this;
            axes = VAxes;
            for (int icounter = 0; icounter < axes.Count; icounter++)
                axes[icounter].mPartOfV = this;
            axes = WAxes;
            for (int icounter = 0; icounter < axes.Count; icounter++)
                axes[icounter].mPartOfW = this;
        }