<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thema "Re: Echte Projektion für profilierten Geländerpfosten" in Programmierung</title>
    <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553513#M6493</link>
    <description>Hallo Heimo,&lt;BR /&gt;&lt;BR /&gt;kann gar nicht glauben, dass es schon über ein Jahr her ist, dass ich mich zuletzt mit dem Thema beschäftigt habe.&lt;BR /&gt;Nun steht tatsächlich eine detaillierte Geländerplanung an... so gehe ich nochmals ran, mit folgenden Fragen und Anmerkungen:&lt;OL&gt;&lt;LI&gt;Man mus, um den Effekt zu erreichen also das Profil (zusätzlich) als Objekt abspeichern... Bei mir lässt nichts (hier unter W) als Geländerpfosten abspeichern. &lt;BR /&gt;&lt;A href="https://ibb.co/2Wjv06R" target="_blank"&gt;&lt;IMG src="https://i.ibb.co/ckN6KvR/grafik.png" /&gt;&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Ich konnte das jetzt ja noch nicht ausprobieren... vielleicht geht es ja irgendwie... aber ich mache den "ganzen Zirkus" &lt;!-- s;-) --&gt;&lt;span class="lia-unicode-emoji" title=":zwinkerndes_Gesicht:"&gt;😉&lt;/span&gt;&lt;!-- s;-) --&gt; ja nur, weil ich meine Außenpfosten außen bündig stehen haben will (ohne Handlaufverlängerung und so Zeug...)&lt;BR /&gt;Kann ich also bei dem ganzen die Position des Pfostens relativ zum Geländerende / -anfang steuern?&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Tue, 25 May 2021 11:08:20 GMT</pubDate>
    <dc:creator>snow</dc:creator>
    <dc:date>2021-05-25T11:08:20Z</dc:date>
    <item>
      <title>Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553509#M6489</link>
      <description>Hallo zusammen,&lt;BR /&gt;&lt;BR /&gt;ich versuch ja immer, egal ob für einfache oder komplette Darstellung, Treppengeländer so zu zeichnen, dass sie wirklich passen.&lt;BR /&gt;(hatte schon mal versucht, über das &lt;A href="https://forum.graphisoft.de/viewtopic.php?f=3&amp;amp;t=26757" target="_blank"&gt;allgemeine Forum[/url) weiterzukommen... hab nun aber ja eine Frage - wenn auch in diesem Zusammenhang - zu GDL... daher dieser neue Beitrag...)&lt;BR /&gt;Die Methode, um zu erreichen, dass Pfosten in Richtung Geländerlänge nicht mittig stehen, sondern bündig mit der Stufenkante kann man dafür, auch für rechteckige Querschnitte, eigene Profile verwenden, mit dem Ankerpunkt jeweils rechts oder links... so weit so gut... für die Darstellung in der Geländeransicht...&lt;BR /&gt;&lt;BR /&gt;..doch im Grundriss kann man für diese Art Pfosten - im Gegensatz zu anderen - offenbar nur die symbolische Darstellung mit Einheitsmaß erhalten.&lt;BR /&gt;Um die echte Projektion dieser Pfosten zu erhalten, erhielt ich vom Support den Tipp, im 3D-Skript den 'PROJEKT2', oder bzw. den 'PROJEKT2{2}' einzufügen... doch "wo genau" ist mir nicht klar.&lt;BR /&gt;&lt;BR /&gt;Kann mit jemand helfen?&lt;BR /&gt;&lt;BR /&gt;Hier das Skript, das für den 'Profilierten Pfosten' angezeigt wird, wenn man das Geländer als Bibliothekselement öffnet... und anschließend das für 'Geländer-Pfosten', dass wohl im Zusammenhang mit dem anderen steht...:&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;&lt;PRE&gt;&lt;A href="https://forum.graphisoft.de/viewtopic.php?f=3&amp;amp;t=26757" target="_blank"&gt; &lt;BR /&gt;&lt;BR /&gt;resol gs_resol&lt;BR /&gt;&lt;BR /&gt;shadow on&lt;BR /&gt;&lt;BR /&gt;group "postGroup"&lt;BR /&gt;	if ac_postProfileID &amp;gt; 0 then call "Profiled Post_m" parameters	ALL,&lt;BR /&gt;																	profileID = ac_postProfileID&lt;BR /&gt;endgroup&lt;BR /&gt;&lt;BR /&gt;if bFixing then&lt;BR /&gt;	group "fixingGroup"&lt;BR /&gt;&lt;BR /&gt;		! get profile size&lt;BR /&gt;		_unused = REQUEST ("Profile_default_boundingbox", ac_postProfileID, _xmin, _ymin, _xmax, _ymax)&lt;BR /&gt;&lt;BR /&gt;		call "Fixing Post_m" parameters	ALL,&lt;BR /&gt;										BoundingBox_left	= _xmin,&lt;BR /&gt;										BoundingBox_right	= _xmax,&lt;BR /&gt;										BoundingBox_inside	= _ymin,&lt;BR /&gt;										BoundingBox_outside	= _ymax&lt;BR /&gt;	endgroup&lt;BR /&gt;	&lt;BR /&gt;&lt;BR /&gt;	if iFixingPosition = FIXING_BASE then&lt;BR /&gt;		placegroup subgroup{2} ("postGroup", "fixingGroup", ContPen3D, 0, 0)&lt;BR /&gt;&lt;BR /&gt;		placegroup "fixingGroup"&lt;BR /&gt;	else&lt;BR /&gt;		placegroup subgroup{2} ("fixingGroup", "postGroup", FixingContPen3D, 0, 0)&lt;BR /&gt;&lt;BR /&gt;		placegroup "postGroup"&lt;BR /&gt;	endif&lt;BR /&gt;&lt;BR /&gt;	killgroup "fixingGroup"&lt;BR /&gt;else&lt;BR /&gt;	placegroup "postGroup"&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;killgroup "postGroup"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;! show origo axes for debugging&lt;BR /&gt;!&lt;BR /&gt;	"showaxes":&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;	pen 2:	lin_ 0,0,0, 1,0,0&lt;BR /&gt;	pen 3: 	lin_ 0,0,0, 0,1,0&lt;BR /&gt;	pen 4: 	lin_ 0,0,0, 0,0,1&lt;BR /&gt;&lt;BR /&gt;return&lt;BR /&gt;&lt;/A&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if GLOB_FEEDBACK_MODE then&lt;BR /&gt;	_ellipseresol = 8&lt;BR /&gt;else&lt;BR /&gt;	_ellipseresol = gs_resol&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;resol _ellipseresol&lt;BR /&gt;&lt;BR /&gt;shadow on&lt;BR /&gt;&lt;BR /&gt;group "postGroup"&lt;BR /&gt;&lt;BR /&gt;	call "Railing Profile_m" parameters ALL,&lt;BR /&gt;								wProfile				= ac_postWidth,&lt;BR /&gt;								hProfile				= ac_postThickness,&lt;BR /&gt;								ellipseresol			= _ellipseresol,&lt;BR /&gt;								offsetY					= 0,&lt;BR /&gt;								bmatProfile				= bmatPost,&lt;BR /&gt;								bOverrideProfileSurface	= bOverridePostSurface,&lt;BR /&gt;								matProfile				= matPost&lt;BR /&gt;&lt;BR /&gt;	call "Profiled Post_m" parameters	ALL,&lt;BR /&gt;										ProfileID		= 0		! profile in parameter buffer&lt;BR /&gt;endgroup&lt;BR /&gt;&lt;BR /&gt;if bFixing then&lt;BR /&gt;	group "postGroupForFixng"&lt;BR /&gt;&lt;BR /&gt;		! use non-hollow profile for SEO&lt;BR /&gt;		_iProfile = iProfile&lt;BR /&gt;		if _iProfile = PROFILE_RECTANGULAR_HOLLOW then _iProfile = PROFILE_RECTANGULAR&lt;BR /&gt;		if _iProfile = PROFILE_ELLIPSOID_HOLLOW then _iProfile = PROFILE_ELLIPSOID&lt;BR /&gt;		&lt;BR /&gt;		call "Railing Profile_m" parameters ALL,&lt;BR /&gt;									iProfile				= _iProfile,&lt;BR /&gt;									wProfile				= ac_postWidth,&lt;BR /&gt;									hProfile				= ac_postThickness,&lt;BR /&gt;									ellipseresol			= _ellipseresol,&lt;BR /&gt;									offsetY					= 0,&lt;BR /&gt;									bmatProfile				= bmatPost,&lt;BR /&gt;									bOverrideProfileSurface	= bOverridePostSurface,&lt;BR /&gt;									matProfile				= matPost&lt;BR /&gt;&lt;BR /&gt;		call "Profiled Post_m" parameters	ALL,&lt;BR /&gt;											ProfileID		= 0		! profile in parameter buffer&lt;BR /&gt;	endgroup&lt;BR /&gt;&lt;BR /&gt;	group "fixingGroup"&lt;BR /&gt;&lt;BR /&gt;		call "Fixing Post_m" parameters	ALL,&lt;BR /&gt;										BoundingBox_left	= ac_post_boundingbox_left,&lt;BR /&gt;										BoundingBox_right	= ac_post_boundingbox_right,&lt;BR /&gt;										BoundingBox_inside	= ac_post_boundingbox_inside,&lt;BR /&gt;										BoundingBox_outside	= ac_post_boundingbox_outside&lt;BR /&gt;	endgroup&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;	_matPost	= 0&lt;BR /&gt;	_matFixing	= 0&lt;BR /&gt;	if bOverrideFixingSurface then&lt;BR /&gt;		_matPost	= matPost&lt;BR /&gt;		_matFixing	= matFixing&lt;BR /&gt;	else&lt;BR /&gt;		_unused = request{2} ("Building_Material_info", bmatPost,	"gs_bmat_surface", _matPost)&lt;BR /&gt;		_unused = request{2} ("Building_Material_info", bmatFixing,	"gs_bmat_surface", _matFixing)&lt;BR /&gt;	endif&lt;BR /&gt;&lt;BR /&gt;	if iFixingPosition = FIXING_BASE then&lt;BR /&gt;		placegroup subgroup{2} ("postGroup", "fixingGroup", ContPen3D, _matPost, 0)&lt;BR /&gt;&lt;BR /&gt;		placegroup "fixingGroup"&lt;BR /&gt;	else&lt;BR /&gt;		placegroup subgroup{2} ("fixingGroup", "postGroupForFixng", FixingContPen3D, _matFixing, 0)&lt;BR /&gt;&lt;BR /&gt;		placegroup "postGroup"&lt;BR /&gt;	endif&lt;BR /&gt;&lt;BR /&gt;	killgroup "postGroupForFixng"&lt;BR /&gt;	killgroup "fixingGroup"&lt;BR /&gt;else&lt;BR /&gt;	placegroup "postGroup"&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;killgroup "postGroup"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end ! end&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;! show origo axes for debugging&lt;BR /&gt;!&lt;BR /&gt;	"showaxes":&lt;BR /&gt;! ===============================================================================&lt;BR /&gt;	pen 2:	lin_ 0,0,0, 1,0,0&lt;BR /&gt;	pen 3: 	lin_ 0,0,0, 0,1,0&lt;BR /&gt;	pen 4: 	lin_ 0,0,0, 0,0,1&lt;BR /&gt;&lt;BR /&gt;return&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Mar 2020 11:20:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553509#M6489</guid>
      <dc:creator>snow</dc:creator>
      <dc:date>2020-03-12T11:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553510#M6490</link>
      <description>project2 gehört meiner Meinung nach aber ins 2D-Script..</description>
      <pubDate>Tue, 24 Mar 2020 14:28:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553510#M6490</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2020-03-24T14:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553511#M6491</link>
      <description>aha...&lt;BR /&gt;funktioniert aber erst mal nicht... &lt;BR /&gt;hier das 2D-skrpt:&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;if ac_postProfileID &amp;gt; 0 then&lt;BR /&gt;	_unused = REQUEST ("Profile_default_boundingbox", ac_postProfileID, _xmin, _ymin, _xmax, _ymax)&lt;BR /&gt;&lt;BR /&gt;	call "RailingPostSymbol_m" parameters all 	bPredefinedProfile	= 0&lt;BR /&gt;endif&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;es gibt auch noch ein Parameterscript... dort findet sich etwas zu den Darstellungssymbolen:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;call "Fixing Post_m" parameters	ALL&lt;BR /&gt;call "Profiled Post_m" parameters ALL&lt;BR /&gt;call "ui_railingpost" parameters ALL&lt;BR /&gt;call "RailingPostSymbol_m" parameters ALL	! iSymbolTypeFixing values&lt;BR /&gt;&lt;BR /&gt;! ------------------------------------------------------------------------&lt;BR /&gt;! VALUE RANGES&lt;BR /&gt;! ------------------------------------------------------------------------&lt;BR /&gt;values "gs_resol"					range [3, ]&lt;BR /&gt;values "gs_resol_fixing"			range [3, ]&lt;BR /&gt;values "ac_postProfileID"			PROFILETYPES_MASK 8	! railing&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;values{2} "iSymbolType" 	SYMBOL_CROSS,				`Typ 1`,&lt;BR /&gt;							SYMBOL_X,					`Typ 2`,&lt;BR /&gt;							SYMBOL_CIRCLE,				`Typ 3`,&lt;BR /&gt;							SYMBOL_RECTANGLE,			`Typ 4`,&lt;BR /&gt;							SYMBOL_DIAMOND,				`Typ 5`,&lt;BR /&gt;							SYMBOL_CIRCLE_CIRCLE, 		`Typ 6`,&lt;BR /&gt;							SYMBOL_RECTANGLE_CIRCLE, 	`Typ 7`,&lt;BR /&gt;							SYMBOL_DIAMOND_CIRCLE, 		`Typ 8`,&lt;BR /&gt;							SYMBOL_CIRCLE_RECTANGLE, 	`Typ 9`,&lt;BR /&gt;							SYMBOL_RECTANGLE_RECTANGLE, `Typ 10`,&lt;BR /&gt;							SYMBOL_DIAMOND_RECTANGLE, 	`Typ 11`&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;so schwierig kann's eigentlich nicht sein... denke ich... aber mir fehlen dazu einfach die gdl-Kenntnisse...</description>
      <pubDate>Fri, 27 Mar 2020 15:19:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553511#M6491</guid>
      <dc:creator>snow</dc:creator>
      <dc:date>2020-03-27T15:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553512#M6492</link>
      <description>So würde ich es machen:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=n6P6itRSmRc" target="_blank"&gt;https://www.youtube.com/watch?v=n6P6itRSmRc&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;IFRAME frameborder="0" width="425" height="355" src="https://www.youtube.com/embed/n6P6itRSmRc" allowfullscreen=""&gt;&lt;/IFRAME&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Mar 2020 14:08:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553512#M6492</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2020-03-28T14:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553513#M6493</link>
      <description>Hallo Heimo,&lt;BR /&gt;&lt;BR /&gt;kann gar nicht glauben, dass es schon über ein Jahr her ist, dass ich mich zuletzt mit dem Thema beschäftigt habe.&lt;BR /&gt;Nun steht tatsächlich eine detaillierte Geländerplanung an... so gehe ich nochmals ran, mit folgenden Fragen und Anmerkungen:&lt;OL&gt;&lt;LI&gt;Man mus, um den Effekt zu erreichen also das Profil (zusätzlich) als Objekt abspeichern... Bei mir lässt nichts (hier unter W) als Geländerpfosten abspeichern. &lt;BR /&gt;&lt;A href="https://ibb.co/2Wjv06R" target="_blank"&gt;&lt;IMG src="https://i.ibb.co/ckN6KvR/grafik.png" /&gt;&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Ich konnte das jetzt ja noch nicht ausprobieren... vielleicht geht es ja irgendwie... aber ich mache den "ganzen Zirkus" &lt;!-- s;-) --&gt;&lt;span class="lia-unicode-emoji" title=":zwinkerndes_Gesicht:"&gt;😉&lt;/span&gt;&lt;!-- s;-) --&gt; ja nur, weil ich meine Außenpfosten außen bündig stehen haben will (ohne Handlaufverlängerung und so Zeug...)&lt;BR /&gt;Kann ich also bei dem ganzen die Position des Pfostens relativ zum Geländerende / -anfang steuern?&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 25 May 2021 11:08:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553513#M6493</guid>
      <dc:creator>snow</dc:creator>
      <dc:date>2021-05-25T11:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553514#M6494</link>
      <description>Du kannst es einfach als "Objekt" abspeichern und dann später im GDL-Editor bestimmen, was es sein soll.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.bilder-upload.eu/bild-d3ee2b-1622087058.png.html" target="_blank"&gt;https://www.bilder-upload.eu/bild-d3ee2b-1622087058.png.html&lt;/A&gt;</description>
      <pubDate>Thu, 27 May 2021 03:44:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553514#M6494</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2021-05-27T03:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553515#M6495</link>
      <description>O.K. in diesem Fall macht also die nachträgliche Typ-Änderung (anders als bei Tür zu Fenster...) also keine Probleme... ohne dein Bild hätte ich den Typ aber wahrscheinlich nie gefunden...&lt;BR /&gt;&lt;BR /&gt;Ja, so geht das ganze dann schon... jetzt weiß  ich das mal...&lt;BR /&gt;Doch für meinen Fall werde ich das ganze wohl doch nicht über diesen Weg machen.&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt; die Höhe lässt sich dann nicht über die Geländereinstellungen steuern... insbesondere bei Treppengeländern bräuchte es dann wohl vielerlei unterschiedliche lange Pfosten&lt;/LI&gt;&lt;LI&gt;der Pfosten gehorcht offenbar nicht den MDO - wird immer dargestellt&lt;/LI&gt;&lt;/UL&gt;&lt;BR /&gt;Inzwischen hab' ich auch heraus gefunden, dass sich auch für Gurte grundsätzlich eine Verlängerung (um die halbe Pfostenstärke) einstellen lässt.-&lt;BR /&gt;In Kombination mit dem Endknotenversatz ums selbe Maß lässt sich dann tatsächlich ein  – bezogen auf die Länge – außenbündiges Geländer ohne "Speziel-Bearbeitung" erzeugen.</description>
      <pubDate>Tue, 01 Jun 2021 09:03:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553515#M6495</guid>
      <dc:creator>snow</dc:creator>
      <dc:date>2021-06-01T09:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Echte Projektion für profilierten Geländerpfosten</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553516#M6496</link>
      <description>Edit:&lt;BR /&gt;der Punkt mit den MDO hat sich erledigt... war doch nicht entsprechend eingestellt... hat mich nur mal wieder irritiert dass ein Geländer standardmäßig nicht einfach projiziert dargestellt wird.</description>
      <pubDate>Tue, 01 Jun 2021 10:20:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Echte-Projektion-f%C3%BCr-profilierten-Gel%C3%A4nderpfosten/m-p/553516#M6496</guid>
      <dc:creator>snow</dc:creator>
      <dc:date>2021-06-01T10:20:42Z</dc:date>
    </item>
  </channel>
</rss>

