Cylindrical.setFromCartesianCoords()
是three.js库中的一个方法,用于将笛卡尔坐标系转换为极坐标系。
参数
返回值
示例
var cartesianVector = new THREE.Vector3(10, 20, 30);
var cylindrical = new THREE.Cylindrical();
cylindrical.setFromCartesianCoords(cartesianVector);
说明
Cylindrical
类表示极坐标系,包含属性radius
,theta
和y
,分别表示半径,极角和高度。vector
转换为极坐标系中的半径、极角和高度,并分别赋值给radius
,theta
和y
属性。Cylindrical
对象的属性。使用场景