Wir schätzen Ihren Input! Bitte nehmen Sie an der Umfrage zu Archicad 28 Startbildschirm und Lerninhalte/Schnell-Tutorials teil
am 2014-09-08 06:24 PM
am 2014-09-10 08:25 AM
am 2014-09-10 03:54 PM
am 2014-09-11 08:34 PM
"hmooslechner" wrote:
Die Rückmeldungen überschlagen sich geradezu 😉
Braucht wahrscheinlich niemand, so ein Teil... 💡
am 2014-09-12 10:30 AM
am 2014-09-12 03:10 PM
am 2014-09-19 06:54 PM
am 2014-09-19 08:45 PM
Object upload error!
Dear Heimo Mooslechner,
You recently uploaded an object, N/A, to the BIMcomponents.com portal that failed to pass the automatic checking process because of errors in the object's content.
Attached please find the log file with detailed information about the errors. This will help you find and solve the issues preventing the upload of your object. Please fix the problems and upload the corrected object again to make it available for the BIM Components community.
Should your upload problems persist, please visit our troubleshooting page for further advice.
Thank you!
The BIM Components Team
dx = x2 - x1 !!!x+y Distanz der Punkte des Segmentes
dy = y2 - y1
if dx < 0 then dx = -dx
if dx = 0 then dx=RND (0.0001)
if dx < RND (0.0001) and dx < -RND (0.0001) then
Winkelsegment = 90
else
WinkelSegment = atn(dy/dx)
endif
RewinSeg = WinkelSegment - 90
Diagonale1 = sqr (dx^2+dy^2) !!!!Distanz der Punkte des Segmentes
Die Verwendung von ralen Typen kann zu Präzisionsproblemen Führen bei Zeile...
am 2014-09-19 10:39 PM
warning: (in Script_1D) : Uninitialized array element at index: [3]
> at line 56 in the Master script of file DŠmmung - ACB.gsm.
dx=0
dy=0
WinkelSegment=0
am 2014-09-19 11:41 PM
Die Verwendung von realen Typen kann zu Präzisionsproblemen führen bei Zeile...
Punkt 2: Das Präsionsproblem iust auch eine Neuerung nach AC 9. Diese Fehlermeldungen treten nur beim Prüfen des Scriptes auf.
Du kannst nicht 2 reale Zahlen miteinder mit dem =Zeichen vergleichen, sondern musst davon ausgehen, dass auf Grund von Ungenauigkeiten in der 5. Nachkommastelle die beiden Werte eventuell abweichen. Also schreibe nicht:
Code:
IF a=deck_hoehe THEN
sondern
Code:
IF ABS(a-deck_hoehe)<eps THEN