BezierMath

indigo.shared.geometry.BezierMath
object BezierMath

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
BezierMath.type

Members list

Value members

Concrete methods

def cubic(t: Double, p0: Double, p1: Double, p2: Double, p3: Double): Double
def cubicNormalised(t: Double, p0: Vertex, p1: Vertex, p2: Vertex, p3: Vertex): Vertex
def cubicWithVertices(t: Double, p0: Vertex, p1: Vertex, p2: Vertex, p3: Vertex): Vertex
def linear(t: Double, p0: Double, p1: Double): Double
def linearNormalised(t: Double, p0: Vertex, p1: Vertex): Vertex
def linearWithVertices(t: Double, p0: Vertex, p1: Vertex): Vertex
def quadratic(t: Double, p0: Double, p1: Double, p2: Double): Double
def quadraticNormalised(t: Double, p0: Vertex, p1: Vertex, p2: Vertex): Vertex
def quadraticWithVertices(t: Double, p0: Vertex, p1: Vertex, p2: Vertex): Vertex