Freigeben über


PointLight Konstruktoren

Definition

Initialisiert eine neue Instanz der PointLight-Klasse am Ursprung.

Überlädt

PointLight()

Initialisiert eine neue Instanz der PointLight-Klasse am Ursprung.

PointLight(Color, Point3D)

Initialisiert eine neue Instanz der PointLight-Klasse an der angegebenen Position unter Verwendung der angegebenen Farbe.

PointLight()

Initialisiert eine neue Instanz der PointLight-Klasse am Ursprung.

public:
 PointLight();
public PointLight ();
Public Sub New ()

Beispiele

Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// Point light values.
PointLight _ptLight = new PointLight();
' Point light values.
Private _ptLight As New PointLight()

Gilt für:

PointLight(Color, Point3D)

Initialisiert eine neue Instanz der PointLight-Klasse an der angegebenen Position unter Verwendung der angegebenen Farbe.

public:
 PointLight(System::Windows::Media::Color diffuseColor, System::Windows::Media::Media3D::Point3D position);
public PointLight (System.Windows.Media.Color diffuseColor, System.Windows.Media.Media3D.Point3D position);
new System.Windows.Media.Media3D.PointLight : System.Windows.Media.Color * System.Windows.Media.Media3D.Point3D -> System.Windows.Media.Media3D.PointLight
Public Sub New (diffuseColor As Color, position As Point3D)

Parameter

diffuseColor
Color

Die diffuse Farbe.

position
Point3D

Die Position.

Weitere Informationen

Gilt für: