BufferGeometry
Object3D
Raycaster
Camera
CubeCamera
PerspectiveCamera
OrthographicCamera
StereoCamera
Clock
Curve
CurvePath
Path
Shape
ShapePath
ArrowHelper
AxesHelper
BoxHelper
Box3Helper
CameraHelper
DirectionalLightHelper
GridHelper
PolarGridHelper
HemisphereLightHelper
PlaneHelper
PointLightHelper
SkeletonHelper
SpotLightHelper
Light
PointLight
RectAreaLight
SpotLight
DirectionalLight
HemisphereLight
LightShadow
PointLightShadow
AnimationLoader
AudioLoader
BufferGeometryLoader
CompressedTextureLoader
CubeTextureLoader
DataTextureLoader
FileLoader
ImageBitmapLoader
ImageLoader
Loader
LoaderUtils
MaterialLoader
ObjectLoader
TextureLoader
LoadingManager
Material
Box2
Box3
Color
Cylindrical
Euler
Frustum
Interpolant
Line3
MathUtils
Matrix3
Matrix4
Plane
Quaternion
AnimationAction
AnimationClip
AnimationMixer
AnimationObjectGroup
AnimationUtils
keyframeTrack
PropertyBinding
PropertyMixer
BooleanKeyframeTrack
QuaternionKeyframeTrack
StringKeyframeTrack
Audio
AudioAnalyser
AudioContext
AudioListener
PositionalAudio

ShapePath.quadraticCurveTo()

ShapePath.quadraticCurveTo() 方法用于在 ShapePath 对象上绘制二次曲线路径。

语法

ShapePath.quadraticCurveTo(cpx, cpy, x, y)

参数

  • cpx : 控制点的 x 坐标
  • cpy : 控制点的 y 坐标
  • x : 目标点的 x 坐标
  • y : 目标点的 y 坐标

返回值

无返回值。

示例

var shape = new THREE.Shape();
shape.moveTo(0,0);
shape.quadraticCurveTo(50, -30, 100, 0);

该代码将在一个 Shape 上绘制一个带有一个控制点 (50, -30) 和一个目标点 (100,0) 的二次曲线路径。

注意事项

ShapePath 对象通常是由 Shape 对象创建的。在使用 ShapePath.quadraticCurveTo() 方法之前,需要使用 Shape.moveTo() 方法将绘图位置移动到期望的起始点。

绘制路径时,务必按照正确的绘制顺序添加路径点,以确保路径正确地封闭和填充。

控制点决定曲线的弯曲程度。在绘图中使用二次曲线可以创建各种可视化效果,如圆角或弧形。