GeometryGym.Ifc.IfcTrimmedCurve.IfcTrimmedCurve C# (CSharp) Méthode

IfcTrimmedCurve() public méthode

public IfcTrimmedCurve ( IfcCartesianPoint s, IfcCartesianPoint e ) : System
s IfcCartesianPoint
e IfcCartesianPoint
Résultat System
        public IfcTrimmedCurve(IfcCartesianPoint s, IfcCartesianPoint e)
            : base(s.mDatabase)
        {
            IfcLine il = new IfcLine(s, new IfcVector(s.mDatabase,e.Location- s.Location));
            mBasisCurve = il.mIndex;
            mTrim1 = new IfcTrimmingSelect(s);
            mTrim2 = new IfcTrimmingSelect(e);
            mMasterRepresentation = IfcTrimmingPreference.CARTESIAN;
            mSenseAgreement = true;
        }

Same methods

IfcTrimmedCurve::IfcTrimmedCurve ( DatabaseIfc db, Arc a, bool twoD, IfcCartesianPoint optStrt, IfcCartesianPoint &end ) : System
IfcTrimmedCurve