export obj
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2008-08-10
04:48 PM
- last edited on
‎2023-08-04
03:04 PM
by
Doreena Deng
‎2008-08-10
04:48 PM
hey, i try to write a script which export floors automatic to obj files,
can you please direct me what to learn from the api devkit?
can you please direct me what to learn from the api devkit?
Labels:
- Labels:
-
Add-On (C++)
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2008-08-11 03:55 PM
‎2008-08-11
03:55 PM
zyben wrote:Can you clarify your request a bit? Do you want to save the 3D model as a WaveFront (.obj) file? If so, this is already included in ArchiCAD.
hey, i try to write a script which export floors automatic to obj files,
can you please direct me what to learn from the api devkit?
If you mean something else, please explain in greater detail.
Ralph Wessel BArch
Central Innovation
Central Innovation
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2008-08-12 10:51 PM
‎2008-08-12
10:51 PM
what i am trying to do is making a button which save each floor as an obj file in a local folder, this mean that it isolate every floor at a time and save it, and the result is that i have one button that export me all the floors in one click.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2008-10-21 06:05 AM
‎2008-10-21
06:05 AM
zyben wrote:
what i am trying to do is making a button which save each floor as an obj file in a local folder, this mean that it isolate every floor at a time and save it, and the result is that i have one button that export me all the floors in one click.
You can switch between stories with APIEnv_ChangeStorySettingsID, then enumerate all elements there with ACAPI_Element_Filter(). After that, for 2D export you can use ACAPI_Element_ShapePrims, and for 3D export ACAPI_Element_Get3DInfo and its friends.
Hope this helps,
Akos