Exemplo n.º 1
0
Arquivo: Line.cs Projeto: 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);
        }
Exemplo n.º 2
0
Arquivo: Line.cs Projeto: 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);
        }