2008-12-16 12:02 PM
2008-12-18 10:11 AM
2008-12-18 10:22 AM
Pertti wrote:This macro was made with the same mindset as all others in the Basic Library: to give a quality implementation of useful generic task. In this case, this function is to provide some basic geometric operations with points, segment and polygons. It doesn't have any background magic in it.
There is a macro object called "PolygonOperations.gsm" in the objectlibrary 12. What objects call this macro? Is it possible to capture Archicad Complex Profiles to be used in gdl objects?
For example a tube could use different profiles created by Complex Profiles.
Olivier wrote:Doing this complicated function is more efficient to implement in C++, that's why we made a new, faster and more rich implementation in a GDL add-on. It is called "PolyOperations", you can read about it in the GDL Reference Manual 12 from page 326. It provides a much more sophisticated way for executing operations on polygons.
About your first question, I don't find examples in 12 Library, using "PolygonOperations" macro.
2008-12-18 11:15 AM
2008-12-18 11:58 AM
ztaskai wrote:I hope for it soon - as it would be a quick workaround for badly joining columns with beams, beam& beams and so on....
Unfortunately, there is no way to use the complex profiles of ArchiCAD in GDL, yet(!). You shouldn't wait for that with any of your elements because it won't come in AC13 and there is no official promise for a given date.
Regards,
Zsolt
2009-01-03 03:55 AM
ztaskai wrote:When I first read Pertti's question I thought he was describing how the MEP routing works: various sectional profiles called along a path. How then does MEP work?Pertti wrote:Unfortunately, there is no way to use the complex profiles of ArchiCAD in GDL, yet(!). You shouldn't wait for that with any of your elements because it won't come in AC13 and there is no official promise for a given date.
There is a macro object called "PolygonOperations.gsm" in the objectlibrary 12. What objects call this macro? Is it possible to capture Archicad Complex Profiles to be used in gdl objects?
For example a tube could use different profiles created by Complex Profiles.
Until then, dealing with polygons in GDL is a pain, indeed. I think you already do it as it can be done - via arrays of coordinates.
Zsolt
2009-01-06 09:26 AM
Erika wrote:MEP works by utilizing lots of API, GDL and even some inside-ArchiCAD functions. Basically, it implements the polygon editing in C++ in an add-on using API functions of ArchiCAD. Then it places GDL elements along the routed path. It's quite complicated. It's good that you mentioned it though - I forgot to mention the API based solution before.
When I first read Pertti's question I thought he was describing how the MEP routing works: various sectional profiles called along a path. How then does MEP work?