License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…

Archicad C++ API
About Archicad add-on development using the C++ API.
SOLVED!

how can I select elements in a 3D within the range of z coordinates

nishida_jp
Booster

In ArchiCAD 27,
how can I select elements in a 3D drawing of a building that fall within the range of z coordinates h1 to h2?

Also, how can I select elements that are part of the range?

1 ACCEPTED SOLUTION

Accepted Solutions
Solution
LChen
Graphisoft
Graphisoft

Hi, I'd suggest you to try ACAPI_Element_CalcBounds() command to have the 3D bounding box of element, then check whether it falls into your range or not.

HTH.

View solution in original post

2 REPLIES 2
Solution
LChen
Graphisoft
Graphisoft

Hi, I'd suggest you to try ACAPI_Element_CalcBounds() command to have the 3D bounding box of element, then check whether it falls into your range or not.

HTH.

Thank you.