用于模拟平面 Plane 的辅助对象.
const plane = new v3d.Plane(new v3d.Vector3(1, 1, 0.2), 3);
const helper = new v3d.PlaneHelper(plane, 1, 0xffff00);
app.scene.add(helper);
plane -- 被模拟的平面.
size -- (可选的) 辅助对象的单边长度. 默认为 1.
color -- (可选的) 辅助对象的颜色. 默认为 0xffff00.
创建一个线框辅助对象来表示指定平面.
请到基类 LineSegments 页面查看公共属性.
被模拟的平面 plane .
辅助对象的单边长度.
请到基类 LineSegments 页面查看其常用方法.
重写基类 Object3D 的该方法以便于 同时更新线框辅助对象与 .plane 和 .size 属性保持一致.