benst
benst

Reputation: 553

Unsharp edges of lines and models

I have read about it on this link : How to using anti aliasing in wpf 3d but unfortunately, there was no answer.

I cannot seem to set the RenderingOptions of my viewport (using the helixtool/helixviewport).

Does anyone know how to increase the sharpness of rendered models?

Upvotes: 0

Views: 195

Answers (1)

Andy
Andy

Reputation: 6466

First of all if you are running windows XP then multi sampling is off by default, there are reg changes to turn it back on but beyond the scope of this question.

WPF should use multi sampling by default, one thing you should make sure of is that your graphics card meets the min requirements for hardware acceleration with WPF Here and also that it's not disabled in the graphics card driver control panel.

using the model from the link in your question I got this, which is ugly! enter image description here

the setting on my nvidia graphics card that was making this happen is displayed below.enter image description here

once I changed the OFF to application controlled, WPF started to use it's multi sampling

enter image description here

Upvotes: 1

Related Questions