Divide() public method

public Divide ( float n ) : AbstractVector
n float
return AbstractVector
コード例 #1
0
        public static FDGVector3 operator /(FDGVector3 a, float b)
        {
            FDGVector3 temp = new FDGVector3(a.x, a.y, a.z);

            temp.Divide(b);
            return(temp);
        }
コード例 #2
0
ファイル: FDGVector3.cs プロジェクト: zoebear/Radia
 public static FDGVector3 operator /(FDGVector3 a, float b)
 {
     FDGVector3 temp = new FDGVector3(a.x, a.y, a.z);
     temp.Divide(b);
     return temp;
 }