當前位置: 首頁>>代碼示例>>C#>>正文


C# Line.GetEndPoint方法代碼示例

本文整理匯總了C#中System.Line.GetEndPoint方法的典型用法代碼示例。如果您正苦於以下問題:C# Line.GetEndPoint方法的具體用法?C# Line.GetEndPoint怎麽用?C# Line.GetEndPoint使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Line的用法示例。


在下文中一共展示了Line.GetEndPoint方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: NewSketchPlanePassLine

        SketchPlane NewSketchPlanePassLine(
            Line line)
        {
            XYZ p = line.GetEndPoint( 0 );
              XYZ q = line.GetEndPoint( 1 );
              XYZ norm;
              if( p.X == q.X )
              {
            norm = XYZ.BasisX;
              }
              else if( p.Y == q.Y )
              {
            norm = XYZ.BasisY;
              }
              else
              {
            norm = XYZ.BasisZ;
              }
              Plane plane = _creapp.NewPlane( norm, p );

              //return _credoc.NewSketchPlane( plane ); // 2013

              return SketchPlane.Create( _doc, plane ); // 2014
        }
開發者ID:JesseMom,項目名稱:the_building_coder_samples,代碼行數:24,代碼來源:Creator.cs

示例2: StreamWcs

        public virtual void StreamWcs(Line line)
        {
            if (line.IsBound == false) {
                Debug.Assert(false);
                return;
            }

            StreamWcs(line.GetEndPoint(0), line.GetEndPoint(1));
        }
開發者ID:halad,項目名稱:RevitLookup,代碼行數:9,代碼來源:GraphicsStream.cs

示例3: AreLinesEqual

        private bool AreLinesEqual(Line line1, Line line2)
        {
            for (int ii = 0; ii < 2; ii++)
            {
                if (line1.GetEndPoint(0).IsAlmostEqualTo(line2.GetEndPoint(ii)) &&
                    line1.GetEndPoint(1).IsAlmostEqualTo(line2.GetEndPoint(1-ii)))
                    return true;
            }

            return false;
        }
開發者ID:whztt07,項目名稱:RevitIFC,代碼行數:11,代碼來源:IFCGridAxis.cs

示例4: Stream

        Stream(Line line)
        {
            if (line.IsBound == false) {
                Debug.Assert(false);
                return;
            }

            Stream(line.GetEndPoint(0), line.GetEndPoint(1));
        }
開發者ID:15921050052,項目名稱:RevitLookup,代碼行數:9,代碼來源:GraphicsStream.cs

示例5: AreLinesEqual

      private bool AreLinesEqual(Line line1, Line line2)
      {
         if (!line1.IsBound || !line2.IsBound)
         {
            // Two unbound lines are equal if they are going in the same direction and the origin
            // of one lies on the other one.
            return line1.Direction.IsAlmostEqualTo(line2.Direction) &&
               MathUtil.IsAlmostZero(line1.Project(line2.Origin).Distance);
         }

         for (int ii = 0; ii < 2; ii++)
         {
            if (line1.GetEndPoint(0).IsAlmostEqualTo(line2.GetEndPoint(ii)) &&
                line1.GetEndPoint(1).IsAlmostEqualTo(line2.GetEndPoint(1 - ii)))
               return true;
         }

         return false;
      }
開發者ID:whztt07,項目名稱:RevitCustomIFCexporter,代碼行數:19,代碼來源:IFCGridAxis.cs


注:本文中的System.Line.GetEndPoint方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。