struct Geode::Vector4(T)

Overview

Vector containing four components. Provides a collection of scalars of the same type.

T is the scalar type.

Defined in:

geode/vectors/vector4.cr

Constructors

Class Method Summary

Instance Method Summary

Instance methods inherited from struct Geode::VectorBase(T, 4)

map(& : T -> U) : CommonVector forall U map, to_slice : Slice(T) to_slice, to_unsafe : Pointer(T) to_unsafe, unsafe_fetch(index : Int) unsafe_fetch

Constructor methods inherited from struct Geode::VectorBase(T, 4)

new(array : StaticArray(T, N))
new(other : CommonVector(T, M)) forall M
new(&)
new
, zero : self zero

Instance methods inherited from module Geode::CommonVector(T, 4)

inspect(io : IO) : Nil inspect, map(& : T -> U) : CommonVector forall U map, map_with_index(offset = 0, & : T, Int32 -> U) : CommonVector(U, N) forall U map_with_index, size size, to_s(io : IO) : Nil to_s, zip_map(other : CommonVector(U, N), & : T, U -> V) : CommonVector(V, N) forall U, V zip_map

Instance methods inherited from module Geode::VectorOperations(4)

&*(scalar : Number) : CommonVector &*, &+(other : CommonVector(T, N)) : CommonVector forall T &+, &-(other : CommonVector(T, N)) : CommonVector forall T &-, *(scalar : Number) : CommonVector *, +(other : CommonVector(T, N)) : CommonVector forall T +, -(other : CommonVector(T, N)) : CommonVector forall T
- : self
-
, /(scalar : Number) : CommonVector /, //(scalar : Number) : CommonVector //, abs : self abs, abs2 : self abs2, ceil : self ceil, clamp(min : CommonVector(T, N), max : CommonVector(T, N)) : CommonVector forall T
clamp(min, max) : CommonVector
clamp(range : Range(CommonVector(T, N), CommonVector(T, N))) : CommonVector forall T
clamp(range : Range) : CommonVector
clamp
, edge(edge : CommonVector(T, N)) : self forall T
edge(edge : T) : self forall T
edge
, floor : self floor, fraction : self fraction, lerp(other : CommonVector(T, N), t : Number) : CommonVector forall T lerp, round(mode : Number::RoundingMode = :ties_even) : self
round(digits : Number, base = 10, *, mode : Number::RoundingMode = :ties_even) : self
round
, scale(vector : CommonVector(T, N)) : CommonVector forall T
scale(amount : Number) : CommonVector
scale
, scale!(vector : CommonVector(T, N)) : CommonVector forall T
scale!(amount : Number) : CommonVector
scale!
, sign : self sign

Instance methods inherited from module Geode::VectorMatrices(T, 4)

&*(matrix : CommonMatrix(U, M, M)) : CommonVector forall U, M &*, *(matrix : CommonMatrix(U, M, M)) : CommonVector forall U, M *, to_column : CommonMatrix to_column, to_row : CommonMatrix to_row

Instance methods inherited from module Geode::VectorGeometry(4)

angle(other : CommonVector(T, N)) : Number forall T angle, dot(other : CommonVector(T, N)) forall T dot, dot!(other : CommonVector(T, N)) forall T dot!, forward(surface : CommonVector(T, N)) : CommonVector forall T forward, length length, mag mag, mag2 mag2, normalize : CommonVector normalize, project(other : CommonVector(T, N)) : CommonVector forall T project, reflect(surface : CommonVector(T, N)) : CommonVector forall T reflect, refract(surface : CommonVector(T, N), eta : Number) : CommonVector forall T refract, scale_to(length : Number) : CommonVector scale_to

Instance methods inherited from module Geode::VectorComparison(4)

==(other : CommonVector(T, N)) forall T ==, compare(other : CommonVector(T, N)) : CommonVector(Int32, N) forall T compare, eq?(other : CommonVector(T, N)) : CommonVector(Bool, N) forall T eq?, ge?(other : CommonVector(T, N)) : CommonVector(Bool, N) forall T ge?, gt?(other : CommonVector(T, N)) : CommonVector(Bool, N) forall T gt?, le?(other : CommonVector(T, N)) : CommonVector(Bool, N) forall T le?, lt?(other : CommonVector(T, N)) : CommonVector(Bool, N) forall T lt?, near_zero?(tolerance) near_zero?, zero? zero?

Constructor Detail

def self.new(x : T, y : T, z : T, w : T) #

Creates a vector from its components.


[View source]
def self.new(components : Tuple(T, T, T, T)) #

Creates a vector from its components.


[View source]
def self.new(array : StaticArray(T, 4)) #

Constructs the vector with pre-existing values.


[View source]
def self.new(other : CommonVector(T, 4)) #

Copies the contents of another vector.


[View source]
def self.new(&) #

Constructs the vector by yielding for each component.

The value of each component should be returned from the block. The block will be given the index of each component as an argument.

Vector4(Int32).new { |i| i * 5 } # => (0, 5, 10, 15)

[View source]

Class Method Detail

def self.[](x : T, y : T, z : T, w : T) #

Constructs a vector with existing components.

The type of the components is derived from the type of each argument.

Vector4[1, 2, 3, 4] # => (1, 2, 3, 4)

[View source]
def self.[](x, y, z, w) #

Constructs a vector with existing components.

The type of the components is specified by the type parameter. Each value is cast to the type T.

Vector4F[1, 2, 3, 4] # => (1.0, 2.0, 3.0, 4.0)

[View source]

Instance Method Detail

def to_column : Matrix4x1(T) #

Converts this vector to a column vector, in other words a matrix with one column.

vector = Vector4[1, 2, 3, 4]
vector.to_column # => [[1], [2], [3], [4]]

[View source]
def to_row : Matrix1x4(T) #

Converts this vector to a row vector, in other words a matrix with one row.

vector = Vector4[1, 2, 3, 4]
vector.to_row # => [[1, 2, 3, 4]]

[View source]
def tuple : Tuple(T, T, T, T) #

Retrieves the components as a tuple.


[View source]
def w : T #

Retrieves the w component.


[View source]
def x : T #

Retrieves the x component.


[View source]
def y : T #

Retrieves the y component.


[View source]
def z : T #

Retrieves the z component.


[View source]