Question about OpenGL
Posted: Wed Aug 08, 2007 3:41 pm
how can i set the visibility of the light(0,1,2)
in my code ?
thanks,
Koby
in my code ?
thanks,
Koby
Steema Software - Customer Support Forums
http://216.92.243.79/support/
Code: Select all
TChart1.Aspect.OpenGL.Active = True
TChart1.Aspect.OpenGL.LightPosition.X = 0
TChart1.Aspect.OpenGL.LightPosition.Y = 1
TChart1.Aspect.OpenGL.LightPosition.Z = 2
Code: Select all
With TChart1.Aspect.OpenGL
.Active = True
.Light.Visible = True
.Light1.Visible = True
.Light2.Visible = True
End With