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
Visual Basic (Declaration)
Public NotInheritable Class PointLight _
Inherits PointLightBase
Dim instance As PointLight
public sealed class PointLight : PointLightBase
public ref class PointLight sealed : public PointLightBase
public final class PointLight extends PointLightBase
XAML Object Element Usage
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.
The following examples create a PointLight object and set some of its properties.
// Point light values.
PointLight _ptLight = new PointLight();
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;
}
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
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
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.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources