Пример #1
0
        public static BCOM.Plane3d ToPlane3d(this TFCOM.TFPlane tfPlane)
        {
            BCOM.Plane3d plane3D;
            BCOM.Point3d nor;
            tfPlane.GetVector(out plane3D.Origin, out nor);
            tfPlane.GetNormal(out plane3D.Normal);

            return(plane3D);
        }