haran2001
haran2001
I have removed the check for color as its was producing an unexpected result. Thank you @skoudoro for pointing it out.
Yes, i will look into this. Thank you.
Hi, I have made the requested changes. Now multiple lines can be initialized and both the methods only use numpy arrays. 1. dashed_line()  2. dotted_line()  Do let me...
Hi, I have tried to apply the stippled line method (texture) on the fury line actor, but I'm encountering the following issue. The output of implementing Stippled_line() with fury.actor.line() is...
(Code using VTK line source) ```python from fury import window import vtk def StippledLine(start_pos, end_pos, lineStipplePattern, lineStippleRepeat, colors): lines = vtk.vtkLineSource() lines.SetResolution(11) lines.SetPoint1(start_pos) lines.SetPoint2(end_pos) mapper = vtk.vtkPolyDataMapper() mapper.SetInputConnection(lines.GetOutputPort()) actor =...
(Code using fury line actor) ```python import numpy as np from fury.actor import line import vtk from fury import window def StippledLine(act, lineStipplePattern, lineStippleRepeat): image = vtk.vtkImageData() texture = vtk.vtkTexture()...
Hi @skoudoro, I also wanted to mention that the present implementation is of complexity O ( n ) per dashed line , where as the implementation via textures is of...
> Thank you for your feedback @haran2001. > > We will look into it and test it from our side. Any update on this @skoudoro?
Thank you for the detailed review @nasimanousheh
Thanks for the interest @carrycooldude, but I'm already working on this issue. But, I highly encourage you to look into other equally interesting issues in the fury codebase.