示例#1
0
文件: Line.cs 项目: fxbit/FxMath
        public Line(GMaps.IVertex<float> Start, GMaps.IVertex<float> End)
        {
            // set the local radius
            m_Start = Start;
            m_End = End;

            m_pStart = new Vector2(m_Start.X, m_Start.Y);
            m_pEnd = new Vector2(m_End.X, m_End.Y);
        }
示例#2
0
文件: Line.cs 项目: fxbit/FxMath
        public Line( Vector.FxVector2f Start, Vector.FxVector2f End )
        {
            // set the local radius
            m_Start = Start;
            m_End = End;

            m_pStart = new Vector2(m_Start.X, m_Start.Y);
            m_pEnd = new Vector2(m_End.X, m_End.Y);
        }