Solved

Horizontal slices of 3D objects

  • 25 September 2022
  • 2 replies
  • 4 views

Badge

Hi!

 

Is it possible to slice 3D objects at a specific height?

 

For example, I have a 3D model from a building, and I'd like to know what the exact outer bounds of the house are at +2m above ground level.

 

Thanks,

Mark

 

 

icon

Best answer by daveatsafe 4 October 2022, 18:10

View original

2 replies

Userlevel 2
Badge +17

Hi @markvv​,

FME 2022 now supports surface clipping, so it is possible using the following method:

  • Create a 2D box well outside the 3D object to be sliced with a 2DBoxReplacer
  • Elevate the 2D box to your desired clipping elevation with a 3DForcer
  • Extrude the elevated box by a very small Z distance (ie. 1mm) with an Extruder
  • Use the resulting extrusion as a Clipper in the Clipper transformer

Screen Shot 2022-10-04 at 9.04.04 AM

Badge

Hi @markvv​,

FME 2022 now supports surface clipping, so it is possible using the following method:

  • Create a 2D box well outside the 3D object to be sliced with a 2DBoxReplacer
  • Elevate the 2D box to your desired clipping elevation with a 3DForcer
  • Extrude the elevated box by a very small Z distance (ie. 1mm) with an Extruder
  • Use the resulting extrusion as a Clipper in the Clipper transformer

Screen Shot 2022-10-04 at 9.04.04 AM

Thanks Dave,

Great, this works!

Reply