Nord direction
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-06
07:15 PM
- last edited on
‎2023-08-07
11:29 AM
by
Doreena Deng
- Labels:
-
Add-On (C++)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-06 08:41 PM
If you are asking as an ArchiCAD user, you set the north direction in the Sun Settings dialog.
But, you are asking this on the developer forum, so are you asking how to do this from within a custom add-on?
Karl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-07 01:46 AM
API_PlaceInfo placeInfo;
memset(&placeInfo, 0, sizeof(API_PlaceInfo));
ACAPI_Enviroment(APIEnv_GetPlaceSetsID, placeInfo, NULL)
placeInfo.north = direction;
ACAPI_Enviroment(APIEnv_ChangePlaceSetsID, placeInfo, NULL)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-07 01:32 PM
Another question.
I developed a cost extimation plugin (http://www.analistgroup.it/ArchiCad/index.asp) for ArchiCAD.
The problem is that I want to insert some control into the property panel.
I tried the example (Panel_Test) but It seems doesn't works.
Any suggestion?
Regards
Gerry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-08 01:27 AM
what exactly is the problem? does it compile? wha does add-on manager say?
btw. thanks, I never really looked at that example myself till now - it will be really usefull to be able to do that
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-08 09:55 AM
The example compile fine.
ArchiCad load add-ons, but in the wall Setting dialog not compare
additional Rolldown Panel.
bye gerry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-08 10:11 AM
I have add the add-on's panel to the element settings dialog through the Work Environment dialog.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-02-08 07:52 PM