THREE JS shape combined

19 Views Asked by At

[The result shape](https://i.stack.imgur.com/

const Board = (props) => {
  return (
    <>
      <group {...props}>
        <mesh scale={[2, 3, 0.1]}>
          <boxGeometry />
          <meshStandardMaterial />
        </mesh>
        <mesh scale={[4, 3, 0.1]}>
          <cylinderGeometry />
          <meshStandardMaterial />
        </mesh>
      </group>
    </>
  );
};

GhkKp.png)

i was expecting a box and a cylinder.

0

There are 0 best solutions below