The CrossSectioner class is here.
CrossSectioner
Performs request on the stream to update the cross sectioning config.
const viewer = document.querySelector("vertex-viewer");const scene = await viewer.scene();const crossSectioner = scene.crossSectioning();await scene.crossSectioning().update({ sectionPlanes: [ { normal: { x: 1, y: 0, z: 0, }, offset: 0, }, ], highlightColor: Color.fromHexString("#ff0000"), lineWidth: 0.5,});
SectionPlane for more information on the section planes.
CrossSectioning for more information on the highlight color and line width.
The new cross sectioning.
The
CrossSectioner
class is here.