struct StumpyCore::Point

Defined in:

stumpy_utils/point.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

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

[View source]

Class Method Detail

def self.distance(p1 : Point, p2 : Point) #

[View source]
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 : Point) #

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

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

[View source]
def -(other) #

[View source]
def /(scalar) #

[View source]
def distance(other : Point) #

[View source]
def mag #

[View source]
def normalize #

[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]