Avalon.Structure.Point.operator C# (CSharp) Method

operator() public static method

Multiplies one point with another
public static operator ( ) : Point
return Point
        public static Point operator *(Point c1, Point c2)
        {
            Point temp = new Point();
            temp.x = c1.x * c2.x;
            temp.y = c1.y * c2.y;
            temp.z = c1.z * c2.z;
            return temp;
        }

Same methods

Point::operator ( ) : bool