Divide() public method

public Divide ( float n ) : AbstractVector
n float
return AbstractVector
        public static FDGVector3 operator /(FDGVector3 a, float b)
        {
            FDGVector3 temp = new FDGVector3(a.x, a.y, a.z);

            temp.Divide(b);
            return(temp);
        }
Esempio n. 2
0
 public static FDGVector3 operator /(FDGVector3 a, float b)
 {
     FDGVector3 temp = new FDGVector3(a.x, a.y, a.z);
     temp.Divide(b);
     return temp;
 }