Vector.vectorProduct

Vectorのベクトル積(クロス積,外積)を返します. Dimentionが3以上の場合のみ使用できます.

  1. VectorType vectorProduct(VectorType v)
    struct Vector(T, int Dimention)
    const
    static if(Dimention == 3)
    VectorType
    vectorProduct
    (
    in VectorType v
    )
    if (
    __traits(isArithmetic, T) &&
    Dimention > 0
    )
  2. VectorType vectorProduct(VectorType[] arg)

Meta