![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@react-three/csg
Advanced tools
yarn add @react-three/csg
Constructive solid geometry for React, a small abstraction around gkjohnson/three-bvh-csg.
Begin with a Geometry
which is a regular THREE.BufferGeometry
that you can pair with a mesh
, or anything else that relies on geometry (physics rigid bodies etc).
import { Geometry, Base, Addition, Subtraction, Intersection, Difference } from '@react-three/csg'
function Cross() {
return (
<mesh>
<meshStandardMaterial />
<Geometry>
You must first give it a Base
which is the geometry foundation for all ensuing operations. All operations within Geometry
, including Base
, behave like regular meshes. They all receive geometry (and optionally a material, see using-multi-material-groups), you can also nest, group and transform them.
<Base scale={[2, 0.5, 0.5]}>
<boxGeometry />
</Base>
Now you chain your operations, as many as you like, but keep in mind that order matters. The following operations are available:
Subtraction
subtracts the geometry from the previousAddition
adds the geometry to the previousIntersection
is the overlap between the geometry and the previousDifference
is the negative overlap between the geometry and the previous <Addition scale={[0.5, 2, 0.5]}>
<boxGeometry />
</Addition>
<Geometry>
</mesh>
)
}
import * as CSG from '@react-three/csg'
function Shape() {
return (
<mesh>
<meshNormalMaterial />
{/** This will yield a regular THREE.BufferGeometry which needs to be paired with a mesh. */}
<Geometry>
{/** The chain begins with a base geometry, where all operations are carried out on. */}
<Base geometry={bunnyGeometry} scale={1.5} position={[0, 0.5, 0]} />
{/** Chain your boolean operations: Addition, Subtraction, Difference and Intersection. */}
<Subtraction position={[-1, 1, 1]}>
{/** Geometry can be set by prop or by child, just like any regular <mesh>. */}
<sphereGeometry />
</Subtraction>
{/** Geometry is re-usable, form hierachies with previously created CSG geometries. */}
<Addition position={[0, 0, -0.75]}>
{/** Combining two boxes into a cross */}
<Geometry>
<Base geometry={boxGeometry} scale={[2, 0.5, 0.5]} />
<Addition geometry={boxGeometry} scale={[0.5, 2, 0.5]} />
</Geometry>
</Addition>
{/** You can deeply nest operations. */}
<group position={[0.5, 1, 0.9]}>
<Subtraction>
<sphereGeometry args={[0.65, 32, 32]} />
</Subtraction>
</group>
</Geometry>
</mesh>
)
}
Call update()
on the main geometry to re-create it. Keep in mind that although the base CSG implementation is fast, this is something you may want to avoid doing often or runtime, depending on the complexity of your geometry.
The following would allow the user to move a cutter around with the mouse.
import { PivotControls } from '@react-three/drei'
function Shape() {
const csg = useRef()
return (
<mesh>
<Geometry ref={csg}>
<Base geometry={bunnyGeometry} />
<PivotControls depthTest={false} anchor={[0, 0, 0]} onDrag={() => csg.current.update()}>
<Subtraction geometry={sphereGeometry} />
</PivotControls>
The useCSG
hook exposes the update
function, which can be used to update the geometry. This is useful when you want to update the geometry from a child component.
const Shape = () => (
<mesh>
<Geometry>
<Base geometry={bunnyGeometry} />
<Cutter />
function Cutter() {
const { update } = useCSG()
return (
<PivotControls onDrag={update}>
<Subtraction>
<boxGeometry />
</Subtraction>
</PivotControls>
With the useGroups
prop you can instruct CSG to generate material groups. Thereby instead of ending up with a single clump of uniformly textured geometry you can, for instance, make cuts with different materials. Each operation now takes its own material! The resulting material group will be inserted into the mesh that carries the output operation.
function Shape() {
return (
<mesh>
<Geometry useGroups>
<Base geometry={bunnyGeometry}>
{/** The base material. Again it can be defined by prop or by child. */}
<meshStandardMaterial />
</Base>
<Subtraction position={[-1, 1, 1]} material={metal}>
{/** This cut-out will be blue. */ }
<meshStandardMaterial color="blue" />
</Subtraction>
{/** etc. */}
<Addition position={[1, -1, -1]} geometry={sphereGeometry} material={stone}>
The following will make all operations visible.
function Shape() {
return (
<mesh>
<Geometry showOperations>
Whereas if you want to show only a single operation, you can do so by setting the showOperation
prop on the root.
function Shape() {
return (
<mesh>
<Geometry>
<Base geometry={bunnyGeometry} />
<Addition geometry={carrotGeometry} showOperation />
export type CSGGeometryProps = {
children?: React.ReactNode
/** Use material groups, each operation can have its own material, default: false */
useGroups?: boolean
/** Show operation meshes, default: false */
showOperations?: boolean
/** Re-compute vertx normals, default: false */
computeVertexNormals?: boolean
}
export type CSGGeometryApi = {
computeVertexNormals: boolean
showOperations: boolean
useGroups: boolean
update: () => void
}
export type CSGGeometryRef = CSGGeometryApi & {
geometry: THREE.BufferGeometry
operations: THREE.Group
}
FAQs
Constructive solid geometry for React
The npm package @react-three/csg receives a total of 0 weekly downloads. As such, @react-three/csg popularity was classified as not popular.
We found that @react-three/csg demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.