@@ -185,8 +185,8 @@ namespace DirectX
185185 BoundingOrientedBox (BoundingOrientedBox&&) = default ;
186186 BoundingOrientedBox& operator =(BoundingOrientedBox&&) = default ;
187187
188- constexpr BoundingOrientedBox (_In_ const XMFLOAT3& _Center , _In_ const XMFLOAT3& _Extents , _In_ const XMFLOAT4& _Orientation ) noexcept
189- : Center(_Center ), Extents(_Extents ), Orientation(_Orientation ) {}
188+ constexpr BoundingOrientedBox (_In_ const XMFLOAT3& center , _In_ const XMFLOAT3& extents , _In_ const XMFLOAT4& orientation ) noexcept
189+ : Center(center ), Extents(extents ), Orientation(orientation ) {}
190190
191191 // Methods
192192 void XM_CALLCONV Transform (_Out_ BoundingOrientedBox& Out, _In_ FXMMATRIX M) const noexcept ;
@@ -254,12 +254,12 @@ namespace DirectX
254254 BoundingFrustum (BoundingFrustum&&) = default ;
255255 BoundingFrustum& operator =(BoundingFrustum&&) = default ;
256256
257- constexpr BoundingFrustum (_In_ const XMFLOAT3& _Origin , _In_ const XMFLOAT4& _Orientation ,
258- _In_ float _RightSlope , _In_ float _LeftSlope , _In_ float _TopSlope , _In_ float _BottomSlope ,
259- _In_ float _Near , _In_ float _Far ) noexcept
260- : Origin(_Origin ), Orientation(_Orientation ),
261- RightSlope(_RightSlope ), LeftSlope(_LeftSlope ), TopSlope(_TopSlope ), BottomSlope(_BottomSlope ),
262- Near(_Near ), Far(_Far ) {}
257+ constexpr BoundingFrustum (_In_ const XMFLOAT3& origin , _In_ const XMFLOAT4& orientation ,
258+ _In_ float rightSlope , _In_ float leftSlope , _In_ float topSlope , _In_ float bottomSlope ,
259+ _In_ float nearPlane , _In_ float farPlane ) noexcept
260+ : Origin(origin ), Orientation(orientation ),
261+ RightSlope(rightSlope ), LeftSlope(leftSlope ), TopSlope(topSlope ), BottomSlope(bottomSlope ),
262+ Near(nearPlane ), Far(farPlane ) {}
263263 BoundingFrustum (_In_ CXMMATRIX Projection, bool rhcoords = false ) noexcept ;
264264
265265 // Methods
0 commit comments