Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / SpotLight.cs / 1 / SpotLight.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D spot light implementation. // // See spec at [....]/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/18/2003 : [....] - Created // //--------------------------------------------------------------------------- using System; using System.Windows.Media; using System.Windows.Media.Composition; using MS.Internal; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; namespace System.Windows.Media.Media3D { ////// The SpotLight derives from PointLightBase as it has a position, range, and attenuation, /// but also adds in a direction and parameters to control the "cone" of the light. /// In order to control the "cone", outerConeAngle (beyond which nothing is illuminated), /// and innerConeAngle (within which everything is fully illuminated) must be specified. /// Lighting between the outside of the inner cone and the outer cone falls off linearly. /// public sealed partial class SpotLight : PointLightBase { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor. /// /// Diffuse color of the new light. /// Position of the new light. /// Direction of the new light. /// Outer cone angle of the new light. /// Inner cone angle of the new light. public SpotLight(Color diffuseColor, Point3D position, Vector3D direction, double outerConeAngle, double innerConeAngle) : this() { // Set PointLightBase properties Color = diffuseColor; Position = position; // Set SpotLight properties Direction = direction; OuterConeAngle = outerConeAngle; InnerConeAngle = innerConeAngle; } ////// Builds a default spotlight shining onto the origin from the (0,0,-1) /// public SpotLight() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ //----------------------------------------------------- // // Public Events // //------------------------------------------------------ //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UIElement.cs
- ResumeStoryboard.cs
- BufferBuilder.cs
- InheritablePropertyChangeInfo.cs
- TextCharacters.cs
- ECDsaCng.cs
- CodeDirectiveCollection.cs
- UserControl.cs
- DatePickerTextBox.cs
- ServiceOperation.cs
- DocumentPage.cs
- DbMetaDataColumnNames.cs
- WebPartZoneBase.cs
- PathSegmentCollection.cs
- XMLDiffLoader.cs
- DataGridBeginningEditEventArgs.cs
- DataViewManager.cs
- RijndaelManagedTransform.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- Focus.cs
- ExpressionBinding.cs
- AuthStoreRoleProvider.cs
- FixedSchema.cs
- Calendar.cs
- NamespaceDecl.cs
- ObjectSet.cs
- SecurityVerifiedMessage.cs
- RSAPKCS1SignatureFormatter.cs
- SQLDoubleStorage.cs
- RIPEMD160Managed.cs
- DPAPIProtectedConfigurationProvider.cs
- WindowsFont.cs
- TableLayoutPanelCodeDomSerializer.cs
- PerformanceCounterLib.cs
- TaiwanCalendar.cs
- DataGridBoolColumn.cs
- Run.cs
- SystemFonts.cs
- RoleService.cs
- StructuralType.cs
- InfoCardServiceInstallComponent.cs
- UIElementIsland.cs
- PerformanceCounter.cs
- Atom10ItemFormatter.cs
- GridLengthConverter.cs
- XPathNavigatorReader.cs
- DescriptionAttribute.cs
- BinaryParser.cs
- HtmlAnchor.cs
- TableProviderWrapper.cs
- StorageModelBuildProvider.cs
- CustomPopupPlacement.cs
- DbModificationCommandTree.cs
- HttpProfileGroupBase.cs
- ALinqExpressionVisitor.cs
- WebFormDesignerActionService.cs
- LocatorPartList.cs
- XmlAnyElementAttribute.cs
- Stream.cs
- EntityDataSourceReferenceGroup.cs
- CmsInterop.cs
- ResourceExpression.cs
- StorageMappingItemCollection.cs
- CounterCreationDataConverter.cs
- CookieProtection.cs
- XamlStream.cs
- EmissiveMaterial.cs
- JsonFormatGeneratorStatics.cs
- CheckBoxFlatAdapter.cs
- DrawingImage.cs
- GradientStop.cs
- SystemIdentity.cs
- Button.cs
- ContextMenuService.cs
- ImmutableObjectAttribute.cs
- Style.cs
- SessionEndingEventArgs.cs
- Binding.cs
- InkCanvasFeedbackAdorner.cs
- SqlSelectStatement.cs
- ParserContext.cs
- PageCatalogPartDesigner.cs
- XamlStream.cs
- InvokeGenerator.cs
- IFlowDocumentViewer.cs
- ServiceModelInstallComponent.cs
- WriteTimeStream.cs
- ADRole.cs
- OuterProxyWrapper.cs
- ColumnCollection.cs
- MatchAttribute.cs
- SpStreamWrapper.cs
- SqlConnectionFactory.cs
- TypePropertyEditor.cs
- SimpleRecyclingCache.cs
- rsa.cs
- StreamGeometry.cs
- BroadcastEventHelper.cs
- UnionCodeGroup.cs
- MenuBase.cs