Reign.Core.Line3.Transform C# (CSharp) 메소드

Transform() 공개 메소드

public Transform ( Matrix3 matrix ) : Line3
matrix Matrix3
리턴 Line3
        public Line3 Transform(Matrix3 matrix)
        {
            return new Line3(Point1.Transform(matrix), Point2.Transform(matrix));
        }

Same methods

Line3::Transform ( Line3 &line, Matrix3 &matrix, Line3 &result ) : void