struct VectorMath::Vec2

Overview

An immutable pair of x/y coordinates

Defined in:

vector_math/vectors.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(x : Float64 = 0.0, y : Float64 = 0.0) #

[View source]

Class Method Detail

def self.parse(s) #

[View source]
def self.unit #

[View source]
def self.x_unit #

[View source]
def self.y_unit #

[View source]

Instance Method Detail

def *(scalar : Float64) #

[View source]
def *(other : Vec2) #

[View source]
def +(other : Vec2) #

[View source]
def +(other : Float64) #

[View source]
def -(other) #

[View source]
def /(scalar) #

[View source]
def mag #

[View source]
def normalize #

[View source]
def svg_pair #

[View source]
def to_s #
Description copied from class Object

Returns a nicely readable and concise string representation of this object, typically intended for users.

This method should usually not be overridden. It delegates to #to_s(IO) which can be overridden for custom implementations.

Also see #inspect.


[View source]
def x : Float64 #

[View source]
def y : Float64 #

[View source]