Curve

SplineCurve

Создает гладкую двухмерную сплайн-кривую из серии точек. Для создания кривой используется Interpolations.CatmullRom.

Пример

// Create a sine-like wave const curve = new v3d.SplineCurve([ new v3d.Vector2(-10, 0), new v3d.Vector2(-5, 5), new v3d.Vector2(0, 0), new v3d.Vector2(5, -5), new v3d.Vector2(10, 0) ]); const points = curve.getPoints(50); const geometry = new v3d.BufferGeometry().setFromPoints(points); const material = new v3d.LineBasicMaterial({ color : 0xff0000 }); // Create the final object to add to the scene const splineObject = new v3d.Line(geometry, material);

Конструктор

SplineCurve(points : Array)

points – Массив точек Vector2, определяющих кривую.

Свойства

Общие свойства смотрите в базовом классе Curve.

.points : Array

Массив точек Vector2, определяющих кривую.

Методы

Общие методы смотрите в базовом классе Curve.

Исходный файл

О том как получить исходный код этого модуля читайте тут.