AbstractedSheep.ShuttleTrackerWorld.Point3D.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Point3D
return Point3D
        public static Point3D operator *(Point3D p, double d)
        {
            return new Point3D(p.X * d, p.Y * d, p.Z * d);
        }

Same methods

Point3D::operator ( ) : bool