[vtkusers] Lights in an assembly
David Gobbi
david.gobbi at gmail.com
Tue Apr 13 07:38:16 EDT 2010
It could also be due to normals. Normals will often cause edges to
look funny. You can turn off the effect of normals in the property:
property->SetAmbient(1.0);
property->SetDiffuse(0.0);
property->SetSpecular(0.0);
Only do this for the properties that are displaying the edges. For
any solid objects, you will definitely not want these settings.
David
On Tue, Apr 13, 2010 at 5:26 AM, Sebastian Gatzka
<sebastian.gatzka at stud.tu-darmstadt.de> wrote:
> I have put the switch on every mapper whocould be responsible for this.
> No change!? Very strange.
>
> Am 13.04.2010 13:11, schrieb David Gobbi:
>>
>> I think that Sebastian is seeing a different problem. The odd
>> coloring that some filters produce is the result of scalars. The
>> solution is to turn off ScalarVisibility in the mapper.
>>
>> mapper->ScalarVisibilityOff();
>>
>> David
>>
>>
>
More information about the vtkusers
mailing list