Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media3D / Ray3DHitTestResult.cs / 1 / Ray3DHitTestResult.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // History: // 06/22/2005 : [....] - Integrated from RayHitTestResult. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; namespace System.Windows.Media.Media3D { ////// The HitTestResult of a Visual3D.HitTest(...) where the parameter /// was a RayHitTestParameter. /// /// NOTE: This might have originated as a PointHitTest on a 2D Visual /// which was extended into 3D. /// public abstract class RayHitTestResult : HitTestResult { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal RayHitTestResult(Visual3D visualHit, Model3D modelHit) : base (visualHit) { _modelHit = modelHit; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- ////// Re-expose Visual property strongly typed to Visual3D. /// public new Visual3D VisualHit { get { return (Visual3D) base.VisualHit; } } ////// The Model3D intersected by the ray. /// public Model3D ModelHit { get { return _modelHit; } } ////// This is a point in 3-space at which the ray intersected /// the geometry of the hit Model3D. This point is in the /// local coordinate system of the Model3D. /// public abstract Point3D PointHit { get; } ////// This is the distance between the ray's origin and the /// point hit. /// public abstract double DistanceToRayOrigin { get; } //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ //----------------------------------------------------- // // Public Events // //------------------------------------------------------ //----------------------------------------------------- // // Internal Methods // //----------------------------------------------------- internal abstract void SetDistanceToRayOrigin(double distance); internal static int CompareByDistanceToRayOrigin(RayHitTestResult x, RayHitTestResult y) { return Math.Sign(x.DistanceToRayOrigin - y.DistanceToRayOrigin); } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private readonly Model3D _modelHit; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // History: // 06/22/2005 : [....] - Integrated from RayHitTestResult. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; namespace System.Windows.Media.Media3D { ////// The HitTestResult of a Visual3D.HitTest(...) where the parameter /// was a RayHitTestParameter. /// /// NOTE: This might have originated as a PointHitTest on a 2D Visual /// which was extended into 3D. /// public abstract class RayHitTestResult : HitTestResult { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal RayHitTestResult(Visual3D visualHit, Model3D modelHit) : base (visualHit) { _modelHit = modelHit; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- ////// Re-expose Visual property strongly typed to Visual3D. /// public new Visual3D VisualHit { get { return (Visual3D) base.VisualHit; } } ////// The Model3D intersected by the ray. /// public Model3D ModelHit { get { return _modelHit; } } ////// This is a point in 3-space at which the ray intersected /// the geometry of the hit Model3D. This point is in the /// local coordinate system of the Model3D. /// public abstract Point3D PointHit { get; } ////// This is the distance between the ray's origin and the /// point hit. /// public abstract double DistanceToRayOrigin { get; } //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ //----------------------------------------------------- // // Public Events // //------------------------------------------------------ //----------------------------------------------------- // // Internal Methods // //----------------------------------------------------- internal abstract void SetDistanceToRayOrigin(double distance); internal static int CompareByDistanceToRayOrigin(RayHitTestResult x, RayHitTestResult y) { return Math.Sign(x.DistanceToRayOrigin - y.DistanceToRayOrigin); } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private readonly Model3D _modelHit; #endregion 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
- BinaryObjectReader.cs
- TreeNodeCollectionEditor.cs
- SQLDateTimeStorage.cs
- StringUtil.cs
- Thread.cs
- Symbol.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SchemaEntity.cs
- NullableDecimalSumAggregationOperator.cs
- RangeValidator.cs
- _NtlmClient.cs
- EncoderFallback.cs
- BulletDecorator.cs
- DomainUpDown.cs
- AnonymousIdentificationSection.cs
- PeerUnsafeNativeMethods.cs
- MenuItemStyle.cs
- PropertyEntry.cs
- TextEditorParagraphs.cs
- DiscoveryViaBehavior.cs
- XpsResource.cs
- SafeRegistryHandle.cs
- CompleteWizardStep.cs
- CompositeFontFamily.cs
- SignatureDescription.cs
- FileChangesMonitor.cs
- GridPattern.cs
- ADMembershipUser.cs
- GeometryHitTestResult.cs
- HashMembershipCondition.cs
- OutputCache.cs
- MatrixCamera.cs
- PowerModeChangedEventArgs.cs
- DataContractJsonSerializerOperationFormatter.cs
- MetadataArtifactLoaderFile.cs
- ContextStack.cs
- TextUtf8RawTextWriter.cs
- RegexCapture.cs
- ViewStateException.cs
- _AcceptOverlappedAsyncResult.cs
- SmtpDigestAuthenticationModule.cs
- GridSplitterAutomationPeer.cs
- diagnosticsswitches.cs
- XPathBinder.cs
- SessionParameter.cs
- XmlDataLoader.cs
- DetailsViewInsertEventArgs.cs
- ModulesEntry.cs
- X509SecurityToken.cs
- BooleanExpr.cs
- WebPartMovingEventArgs.cs
- TransformerInfo.cs
- RoleManagerEventArgs.cs
- MeshGeometry3D.cs
- DetailsViewRowCollection.cs
- BamlLocalizer.cs
- StyleCollection.cs
- ElementNotEnabledException.cs
- WindowsStartMenu.cs
- PrePrepareMethodAttribute.cs
- DataGridViewCheckBoxColumn.cs
- UniqueEventHelper.cs
- ConfigXmlSignificantWhitespace.cs
- EFColumnProvider.cs
- ModulesEntry.cs
- TextEndOfSegment.cs
- ValueExpressions.cs
- DataGridSortingEventArgs.cs
- FormsIdentity.cs
- WmpBitmapDecoder.cs
- TryCatch.cs
- BitSet.cs
- WeakRefEnumerator.cs
- XmlImplementation.cs
- KnownColorTable.cs
- AppSettingsSection.cs
- TransformValueSerializer.cs
- CodeDelegateCreateExpression.cs
- StylusPointPropertyInfo.cs
- TimeIntervalCollection.cs
- CheckBoxList.cs
- SHA1.cs
- MobileUserControl.cs
- TextProperties.cs
- UIElementParagraph.cs
- SqlNotificationEventArgs.cs
- LocationReferenceEnvironment.cs
- While.cs
- XmlNamespaceMappingCollection.cs
- LookupNode.cs
- AdapterDictionary.cs
- ButtonFlatAdapter.cs
- HttpRequest.cs
- SourceElementsCollection.cs
- Opcode.cs
- DataListDesigner.cs
- ServiceDescriptions.cs
- OuterGlowBitmapEffect.cs
- Track.cs
- HTMLTagNameToTypeMapper.cs