class Mittsu::Matrix3

Defined in:

mittsu/math/matrix3.cr

Constant Summary

DIMENSIONS = 3

Constructors

Instance Method Summary

Constructor Detail

def self.new #

[View source]

Instance Method Detail

def ==(other) #
Description copied from class Reference

Returns false (other can only be a Value here).


[View source]
def apply_to_vector3_array(array, offset = 0, length = array.length) #

[View source]
def clone #

[View source]
def copy(m) #

[View source]
def determinant #

[View source]
def elements : Array(Float64) #

[View source]
def elements=(elements : Array(Float64)) #

[View source]
def flatten_to_array_offset(array, offset) #

[View source]
def from_array(array) #

[View source]
def identity #

[View source]
def inverse(matrix, throw_on_invertible = false) #

[View source]
def multiply_scalar(s) #

[View source]
def normal_matrix(m) #

[View source]
def set(n11, n12, n13, n21, n22, n23, n31, n32, n33) #

[View source]
def to_a #

[View source]
def transpose #

[View source]
def transpose_into_array(r) #

[View source]