R3.Math.Isometry.ReflectX C# (CSharp) Метод

ReflectX() публичный статический Метод

Returns an isometry which represents a reflection across the x axis.
public static ReflectX ( ) : Isometry
Результат Isometry
        public static Isometry ReflectX()
        {
            Isometry i = new Isometry();
            Circle reflection = new Circle( new Vector3D(), new Vector3D( 1, 0 ) );
            i.Reflection = reflection;
            return i;
        }