Line Object rendering with variable cross section dimensions

Issue #198 resolved
Mike Bartholomew created an issue

There appears to be an error in rendering Line objects that use range parameters. The end view at each end as well as the changes in section dimensions is not drawn correctly. See the following library object and the image of how it is rendered.There should be a straight line from the top edge of the plate from one side to the other. It is missing.

https://openbrim.org/96D1B7B1-296C-450D-87E9-152FD91BAD1B_objidb9orilytujeleth0o5r4wfpfel.librevision

SteelGirderTest.jpg

Comments (2)

  1. Ali Koc

    I am not sure if I understood the issue, but if you change the following:

           <O T="Line">
               <P N="Opacity" V="0.75" />
               <P N="Section" V="IGirder" T="Section" />
               <P N="DrawBorder" V="1" />
               <P N="DrawFaceA" V="0" />
               <P N="DrawFaceB" V="1" />
               <P N="DrawFaceABorder" V="0" />
               <P N="DrawFaceBBorder" V="0" />
               <O T="Point" Y="0" X="0" Z="0" />
               <O T="Point" Y="0" X="Length" Z="0" />
           </O>
    

    to this:

           <O T="Line">
               <P N="Section" V="IGirder" T="Section" />
               <O T="Point" Y="0" X="0" Z="0" />
               <O T="Point" Y="0" X="Length" Z="0" />
           </O>
    

    Do you still see the problem? It seems various draw options have been set on the line which may be causing the issue.

  2. Log in to comment