System.Windows.Media.Media3 ...


.NET Framework Class Library
PointLight Class

Represents a light source that has a specified position in space and projects its light in all directions.

Namespace:  System.Windows.Media.Media3D
Assembly:  PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic (Declaration)
Public NotInheritable Class PointLight _
    Inherits PointLightBase
Visual Basic (Usage)
Dim instance As PointLight
C#
public sealed class PointLight : PointLightBase
Visual C++
public ref class PointLight sealed : public PointLightBase
JScript
public final class PointLight extends PointLightBase
XAML Object Element Usage
<PointLight .../>
Remarks

The rate at which the light's intensity diminishes over distance is called its attenuation and can be controlled by setting the ConstantAttenuation, LinearAttenuation, or QuadraticAttenuation properties.

Examples

The following examples create a PointLight object and set some of its properties.

C#
// Point light values.
PointLight _ptLight = new PointLight();
C#
public MyLights()
{
    for (int i = 0; i < nbrDirLights; i++)
    {
        _dirLight[i] = new DirectionalLight();
        _dirLight[i].Color = _dirLightColor[i];
        _dirLight[i].Direction = _dirVector[i];
    }

    _ptLight.Position = new Point3D(-3, -7, 10);
    _ptLight.Color = System.Windows.Media.Brushes.White.Color;
    _ptLight.Range = 15.0;
    _ptLight.ConstantAttenuation = 3.0;
}
Inheritance Hierarchy

System..::.Object
  System.Windows.Threading..::.DispatcherObject
    System.Windows..::.DependencyObject
      System.Windows..::.Freezable
        System.Windows.Media.Animation..::.Animatable
          System.Windows.Media.Media3D..::.Model3D
            System.Windows.Media.Media3D..::.Light
              System.Windows.Media.Media3D..::.PointLightBase
                System.Windows.Media.Media3D..::.PointLight
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker