原始椭球 用于3D渲染的椭圆体几何体,包括法线,UV和单元格索引(面)。 安装 npm install primitive-ellipsoid 用法 import createEllipsoid from "primitive-ellipsoid" ; const radius = 1 ; const geometry = createEllipsoid ( radius , { latSegments : 64 , lngSegments : 64 , rx : 2 , ry : 1 , rz : 1 , } ) ; console . log ( geometry ) ; // { // positions: [ [x, y, z], [x, y, z], ... ], // cells: [ [a, b, c], [a, b, c], ... ], /