[vtkusers] How to tune the line with of vtkProperty2D

Ken Martin ken.martin at kitware.com
Tue Aug 23 12:13:58 EDT 2016


It sounds like an openGL driver issue.  What version of VTK are you using
and is it built with the OPenGL1 or OpenGL2 backend? What GPU is on the
system you are using?

Assuming you are using a recent VTK with OpenGL2 backend my guess is that
your hardware is saying it can draw wide lines up to 7.5 pixels (though it
seems not to), beyond that VTK is having to render the wide lines itself.
That would be my guess. If you are using a recent VTK with the OPenGL2
backend you can test this by modifying the HaveWideLines method in
Rendering/OpenGL2/vtgkOpenGLPolyDataMapper2D.cxx

change

    return !(renWin &&
      renWin->GetMaximumHardwareLineWidth() >=
actor->GetProperty()->GetLineWidth());

to

    return true;



On Mon, Aug 22, 2016 at 9:10 PM, Liu_tj <tjlp at netease.com> wrote:

> Hi,
>
> I use vtkAngleWidget to measure angle. I want to tune the line width of
> the angle leaders and arc. Below is my C# code:
>
>             m_angleWidget = vtkAngleWidget.New();
>             m_angleWidget.SetInteractor(m_renderWin.GetInteractor());
>             m_angleWidget.PlacePointEvt += new vtkObject.
> vtkObjectEventHandler(AngleWidget_PlacePointEvt);
>             m_angleRep = vtkAngleRepresentation2D.New();
>             m_angleRep.GetRay1().GetProperty().SetColor(0.0, 1.0, 0.0);
>             m_angleRep.GetRay1().GetProperty().SetLineWidth(8.0f);
>             m_angleRep.GetRay2().GetProperty().SetColor(0.0, 1.0, 0.0);
>             m_angleRep.GetRay2().GetProperty().SetLineWidth(8.0f);
>             m_angleRep.GetArc().GetProperty().SetColor(0.0, 1.0, 0.0);
>             m_angleRep.GetArc().GetProperty().SetLineWidth(8.0f);
>             m_angleRep.GetArc().GetLabelTextProperty().SetColor(0.0, 0.0,
> 1.0);
>             m_angleWidget.SetRepresentation(m_angleRep);
>
> If I call SetLineWidth with 5.0f, 6.0f, 7.0f and 7.5f, I get the same
> effect as 1.jpg; if I call SetLineWidth with 8.0f, the effect is as 2.jpg.
> For me, the line in 1.jpg is too slim, the line in 2.jpg is too wide, how
> to tune it?
>
> Thanks
> Liu Peng
>
>
>
>
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the VTK FAQ at:
> http://www.vtk.org/Wiki/VTK_FAQ
>
> Search the list archives at: http://markmail.org/search/?q=vtkusers
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/vtkusers
>
>


-- 
Ken Martin PhD
Chairman & CFO
Kitware Inc.
28 Corporate Drive
Clifton Park NY 12065
518 371 3971

This communication, including all attachments, contains confidential and
legally privileged information, and it is intended only for the use of the
addressee.  Access to this email by anyone else is unauthorized. If you are
not the intended recipient, any disclosure, copying, distribution or any
action taken in reliance on it is prohibited and may be unlawful. If you
received this communication in error please notify us immediately and
destroy the original message.  Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/vtkusers/attachments/20160823/0cedff4d/attachment.html>


More information about the vtkusers mailing list