Skip to content

Latest commit

 

History

History
156 lines (134 loc) · 4.28 KB

math.md

File metadata and controls

156 lines (134 loc) · 4.28 KB

math

class math.geometry.Ellipse

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Ellipse.aspl:4:1

method construct

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Ellipse.aspl:12:5

method construct(Point position, Size size)

method containsPoint

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Ellipse.aspl:18:5

method containsPoint(Point point) returns bool

class math.geometry.Point

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Point.aspl:2:1

method construct

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Point.aspl:10:5

method construct(float x, float y)

class math.geometry.Rectangle

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Rectangle.aspl:4:1

method construct

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Rectangle.aspl:12:2

method construct(Point position, Size size)

method containsPoint

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Rectangle.aspl:18:5

method containsPoint(Point point) returns bool

class math.geometry.Size

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Size.aspl:2:1

method construct

Source: /home/runner/work/aspl/aspl/stdlib/math/geometry/Size.aspl:10:2

method construct(float width, float height)

function math.abs

Source: /home/runner/work/aspl/aspl/stdlib/math/abs.aspl:2:1

function abs(double x) returns double

function math.radians

Source: /home/runner/work/aspl/aspl/stdlib/math/angular_units.aspl:2:1

function radians(double degrees) returns double

function math.degrees

Source: /home/runner/work/aspl/aspl/stdlib/math/angular_units.aspl:7:1

function degrees(double radians) returns double

function math.min

Source: /home/runner/work/aspl/aspl/stdlib/math/comparison.aspl:2:1

function min(double a, double b) returns double

function math.max

Source: /home/runner/work/aspl/aspl/stdlib/math/comparison.aspl:10:1

function max(double a, double b) returns double

function math.pi

Source: /home/runner/work/aspl/aspl/stdlib/math/constants.aspl:2:1

function pi() returns double

function math.e

Source: /home/runner/work/aspl/aspl/stdlib/math/constants.aspl:7:1

function e() returns double

function math.pow

Source: /home/runner/work/aspl/aspl/stdlib/math/pow.aspl:2:1

function pow(double base, double exponent) returns double

function math.root

Source: /home/runner/work/aspl/aspl/stdlib/math/pow.aspl:7:1

function root(double x, double n) returns double

function math.sqrt

Source: /home/runner/work/aspl/aspl/stdlib/math/pow.aspl:12:1

function sqrt(double x) returns double

function math.floor

Source: /home/runner/work/aspl/aspl/stdlib/math/round.aspl:2:1

function floor(double x) returns double

function math.ceil

Source: /home/runner/work/aspl/aspl/stdlib/math/round.aspl:7:1

function ceil(double x) returns double

function math.round

Source: /home/runner/work/aspl/aspl/stdlib/math/round.aspl:12:1

function round(double x, int d = 0) returns double

function math.sin

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:2:1

function sin(double x) returns double

function math.asin

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:7:1

function asin(double x) returns double

function math.cos

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:12:1

function cos(double x) returns double

function math.acos

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:17:1

function acos(double x) returns double

function math.tan

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:22:1

function tan(double x) returns double

function math.atan

Source: /home/runner/work/aspl/aspl/stdlib/math/trigonometry.aspl:27:1

function atan(double x) returns double