liberty.math.vector

* Copyright: Copyright (C) 2018 Gabriel Gheorghe, All Rights Reserved * Authors: $(Gabriel Gheorghe) * License: GNU GENERAL PUBLIC LICENSE Version 3 * Source: * Documentation: * Coverage:

Members

Aliases

Color3
alias Color3 = Vector3!ubyte
Color4
alias Color4 = Vector4!ubyte
Vector2D
alias Vector2D = Vector2!double
Vector2F
alias Vector2F = Vector2!float
Vector2I
alias Vector2I = Vector2!int
Vector2U
alias Vector2U = Vector2!uint
Vector3D
alias Vector3D = Vector3!double
Vector3F
alias Vector3F = Vector3!float
Vector3I
alias Vector3I = Vector3!int
Vector3U
alias Vector3U = Vector3!uint
Vector4D
alias Vector4D = Vector4!double
Vector4F
alias Vector4F = Vector4!float
Vector4I
alias Vector4I = Vector4!int
Vector4U
alias Vector4U = Vector4!uint

Functions

absByElem
Vector!(T, N) absByElem(Vector!(T, N) a)

Element-wise absolute value.

cross
Vector!(T, 3) cross(Vector!(T, 3) a, Vector!(T, 3) b)

Returns 3D cross product.

dot
T dot(Vector!(T, N) a, Vector!(T, N) b)

Returns dot product.

maxByElem
Vector!(T, N) maxByElem(Vector!(T, N) a, Vector!(T, N) b)

Element-wise maximum.

minByElem
Vector!(T, N) minByElem(Vector!(T, N) a, Vector!(T, N) b)

Element-wise minimum.

reflect
Vector!(T, N) reflect(Vector!(T, N) a, Vector!(T, N) b)

Returns 3D reflect.

Structs

Vector
struct Vector(T, ubyte N)

T = type of elements. N = number of elements (2, 3, 4).

Templates

Vector2
template Vector2(T)
Vector3
template Vector3(T)
Vector4
template Vector4(T)

Meta