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

Cylindrical.setFromCartesianCoords()

Cylindrical.setFromCartesianCoords() 是three.js库中的一个方法,用于将笛卡尔坐标系转换为极坐标系。

  • 参数

    • vector: THREE.Vector3类型,代表需要转换的笛卡尔坐标系的向量。
  • 返回值

    • 无返回值。
  • 示例

var cartesianVector = new THREE.Vector3(10, 20, 30);
var cylindrical = new THREE.Cylindrical();
cylindrical.setFromCartesianCoords(cartesianVector);
  • 说明

    • Cylindrical类表示极坐标系,包含属性radiusthetay,分别表示半径,极角和高度。
    • 该方法会将参数vector转换为极坐标系中的半径、极角和高度,并分别赋值给radiusthetay属性。
    • 该方法不返回任何值,而是修改了传入的Cylindrical对象的属性。
  • 使用场景

    • 当需要将已知的笛卡尔坐标系中的向量转换为极坐标系中的向量时,可以使用该方法。
    • 该方法常用于three.js中的场景配置,比如旋转相机、元素的位置和角度等。