Skip to content

Commit

Permalink
adding required parenthesis in IfcMapConversion.ValidXAxis
Browse files Browse the repository at this point in the history
  • Loading branch information
SergejMuhic committed Jun 27, 2024
1 parent 656c66d commit 6b66aba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ _XAxisAbscissa_ it provides the direction of the local x axis within the horizon
<Expression>(NOT EXISTS(XAxisAbscissa) AND NOT EXISTS(XAxisOrdinate)) OR
(NOT EXISTS(XAxisAbscissa) AND XAxisOrdinate &lt;&gt; 0.0) OR
(NOT EXISTS(XAxisOrdinate) AND XAxisAbscissa &lt;&gt; 0.0) OR
(EXISTS(XAxisAbscissa) AND EXISTS(XAxisOrdinate) AND NOT (XAxisAbscissa = 0.0 AND XAxisOrdinate = 0.0))</Expression>
(EXISTS(XAxisAbscissa) AND EXISTS(XAxisOrdinate) AND NOT ((XAxisAbscissa = 0.0) AND (XAxisOrdinate = 0.0)))</Expression>
</DocWhereRule>
</WhereRules>
</DocEntity>
Expand Down

1 comment on commit 6b66aba

@iegorychev
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just wanted to write about it =)

Please sign in to comment.