Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Path

A 2D path representation. The class provides methods for creating paths and contours of 2D shapes similar to the 2D Canvas API.

Code Example

const path = new THREE.Path();
path.lineTo( 0, 0.8 );
path.quadraticCurveTo( 0, 1, 0.2, 1 );
path.lineTo( 1, 1 );
const points = path.getPoints();
const geometry = new THREE.BufferGeometry().setFromPoints( points );
const material = new THREE.LineBasicMaterial( { color: 0xffffff } );
const line = new THREE.Line( geometry, material );
scene.add( line );

Hierarchy

Index

Constructors

constructor

Properties

arcLengthDivisions

arcLengthDivisions: number

This value determines the amount of divisions when calculating the cumulative segment lengths of a curve via .getLengths. To ensure precision when using methods like .getSpacedPoints, it is recommended to increase .arcLengthDivisions if the curve is very large. Default is 200.

default

200

autoClose

autoClose: boolean

Whether or not to automatically close the path.

default

false

currentPoint

currentPoint: I3JS.Vector2

The current offset of the path. Any new Curve added will start here.

default

new THREE.Vector2()

curves

curves: I3JS.Curve<I3JS.Vector2>[]

The array of Curves.

default

[]

type

type: string
default

'Path'

Methods

absarc

  • absarc(aX: number, aY: number, aRadius: number, aStartAngle: number, aEndAngle: number, aClockwise: boolean): I3JS.Path
  • Adds an absolutely positioned EllipseCurve to the path.

    Parameters

    • aX: number

      The absolute center of the arc.

    • aY: number

      The absolute center of the arc.

    • aRadius: number
    • aStartAngle: number

      The start angle in radians.

    • aEndAngle: number

      The end angle in radians.

    • aClockwise: boolean

      Sweep the arc clockwise. Defaults to false.

    Returns I3JS.Path

absellipse

  • absellipse(aX: number, aY: number, xRadius: number, yRadius: number, aStartAngle: number, aEndAngle: number, aClockwise: boolean, aRotation: number): I3JS.Path

add

arc

  • arc(aX: number, aY: number, aRadius: number, aStartAngle: number, aEndAngle: number, aClockwise: boolean): I3JS.Path

bezierCurveTo

  • bezierCurveTo(aCP1x: number, aCP1y: number, aCP2x: number, aCP2y: number, aX: number, aY: number): I3JS.Path
  • This creates a bezier curve from .currentPoint with (cp1X, cp1Y) and (cp2X, cp2Y) as control points and updates .currentPoint to x and y.

    Parameters

    • aCP1x: number
    • aCP1y: number
    • aCP2x: number
    • aCP2y: number
    • aX: number
    • aY: number

    Returns I3JS.Path

clone

closePath

  • closePath(): void

computeFrenetFrames

copy

ellipse

  • ellipse(aX: number, aY: number, xRadius: number, yRadius: number, aStartAngle: number, aEndAngle: number, aClockwise: boolean, aRotation: number): I3JS.Path

fromJSON

getCurveLengths

  • getCurveLengths(): number[]

getLength

  • getLength(): number

getLengths

  • getLengths(divisions?: number): number[]

getPoint

  • Parameters

    Returns I3JS.Vector2

    Returns an array of points representing a sequence of curves. The division parameter defines the number of pieces each curve is divided into. However, for optimization and quality purposes, the actual sampling resolution for each curve depends on its type. For example, for a LineCurve, the returned number of points is always just 2.

getPointAt

  • Parameters

    • u: number

      A position on the curve according to the arc length. Must be in the range [ 0, 1 ].

    • Optional optionalTarget: I3JS.Vector2

      If specified, the result will be copied into this Vector, otherwise a new Vector will be created.

    Returns I3JS.Vector2

    Returns a vector for a given position on the curve according to the arc length.

getPoints

getSpacedPoints

getTangent

  • Parameters

    • t: number

      A position on the curve. Must be in the range [ 0, 1 ].

    • Optional optionalTarget: I3JS.Vector2

      If specified, the result will be copied into this Vector, otherwise a new Vector will be created.

    Returns I3JS.Vector2

    Returns a unit vector tangent at t. If the derived curve does not implement its tangent derivation, two points a small delta apart will be used to find its gradient which seems to give a reasonable approximation.

getTangentAt

  • Parameters

    • u: number

      A position on the curve according to the arc length. Must be in the range [ 0, 1 ].

    • Optional optionalTarget: I3JS.Vector2

      If specified, the result will be copied into this Vector, otherwise a new Vector will be created.

    Returns I3JS.Vector2

    Returns tangent at a point which is equidistant to the ends of the curve from the point given in .getTangent.

getUtoTmapping

  • getUtoTmapping(u: number, distance: number): number

lineTo

moveTo

quadraticCurveTo

  • quadraticCurveTo(aCPx: number, aCPy: number, aX: number, aY: number): I3JS.Path

setFromPoints

splineThru

toJSON

  • toJSON(): object

updateArcLengths

  • updateArcLengths(): void

Generated using TypeDoc