Parent Directory
|
Revision Log
|
Patch
--- trunk/gr2lib/core/coretypes/implementation/ArtToolInfo.cs 2010/07/15 22:18:29 81 +++ trunk/gr2lib/core/coretypes/implementation/ArtToolInfo.cs 2010/07/15 23:36:04 82 @@ -11,18 +11,18 @@ public class ArtToolInfo : IArtToolInfo { - internal FilePath _fromArtToolName; - internal granny_int32 _artToolMajorRevision; - internal granny_int32 _artToolMinorRevision; - internal granny_real32 _unitsPerMeter; - internal IntPtr _ExtendedData; + private FilePath _fromArtToolName; + private granny_int32 _artToolMajorRevision; + private granny_int32 _artToolMinorRevision; + private granny_real32 _unitsPerMeter; + - internal Vector3 _Origin; - internal Vector3 _Right; - internal Vector3 _Up; - internal Vector3 _Back; + private Vector3 _Origin; + private Vector3 _Right; + private Vector3 _Up; + private Vector3 _Back; public ArtToolInfo() { @@ -73,13 +73,19 @@ public Vector3 Right { get { return _Right; } set { _Right = value; } } public Vector3 Up { get { return _Up; } set { _Up = value; } } public Vector3 Back { get { return _Back; } set { _Back = value; } } - public IntPtr ExtendedData { get { return _ExtendedData; } set { _ExtendedData = value; } } + #endregion #region INativePointer Members private IntPtr _NativePointer; public IntPtr NativePointer { get { return _NativePointer; } set { _NativePointer = value; } } #endregion + + #region IExtendedData Members + private IntPtr _ExtendedData; + public IntPtr ExtendedData { get { return _ExtendedData; } set { _ExtendedData = value; } } + #endregion + } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |