зеркало из https://github.com/microsoft/DirectXTK.git
Страница:
Plane
Страницы
3D shapes
Adding audio to your project
Adding the DirectX Tool Kit for Audio
Adding the DirectX Tool Kit
AlphaTestEffect
AnimatedTexture
Animating using model bones
Audio
AudioEmitter
AudioEngine
AudioListener
Authoring an Effect
Basic game math
BasicEffect
BasicPostProcess
BufferHelpers
Collision detection
Color
ComPtr
CommonStates
ControllerFont
Creating and playing sounds
Creating custom shaders with DGSL
DDSTextureLoader
DGSLEffect
DebugDraw
DebugEffect
DeviceResources
DirectXHelpers
DirectXTK
Drawing text
DualPostProcess
DualTextureEffect
DynamicSoundEffectInstance
EffectFactory
Effects
EnvironmentMapEffect
Game Gallery
Game controller input
GamePad
GeometricPrimitive
Getting Started
GraphicsMemory
Home
IEffect
IEffectFog
IEffectLights
IEffectMatrices
IEffectSkinning
Implementation
Keyboard
Legacy XAudio 2.7 Notes
Line drawing and anti aliasing
MSAAHelper
MakeSpriteFont
Making use of wave banks
Matrix
Mixing SimpleMath and DirectXMath
Model
ModelBone
ModelMesh
ModelMeshPart
More tricks with sprites
Mouse and keyboard input
Mouse
Multistream rendering and instancing
NormalMapEffect
PBREffect
Physically based rendering
Picking
Plane
PostProcess
PrimitiveBatch
Quaternion
Ray
Rectangle
RenderTexture
Rendering a model
Resources
Samples
ScreenGrab
ScrollingBackground
Simple rendering
SimpleMath
SkinnedEffect
SoundEffect
SoundEffectInstance
SoundStreamInstance
SpriteBatch
SpriteFont
SpriteSheet
Sprites and textures
StepTimer
TextConsole
The basic game loop
ThrowIfFailed
ToneMapPostProcess
Using DeviceResources
Using HDR rendering
Using advanced shaders
Using positional audio
Using skinned models
Using the SimpleMath library
Utilities
Vector2
Vector3
Vector4
VertexTypes
Viewport
WICTextureLoader
Wave Formats
WaveBank
Writing custom shaders
XWBTool
XboxDDSTextureLoader
6
Plane
Chuck Walbourn редактировал(а) эту страницу 2022-04-26 16:45:12 -07:00
Содержание
DirectXTK | SimpleMath |
---|
An infinite 2D plane represented as a four component vector modeled after the XNA Game Studio 4 (Microsoft.Xna.Framework.Plane
) math library.
Header
#include <SimpleMath.h>
Initialization
using namespace DirectX::SimpleMath;
Plane p; // Creates a plane in XZ at the origin
Plane p(0, 1, 0, 0); // Creates a plane in XZ at the origin
Plane p( Vector3(0,1,0), 0 ); // Creates a plane in XZ at the origin
Plane p( Vector3(1,1,1),
Vector3(2,2,2),
Vector3(3,3,3)); // Creates a plane containing the three points
Plane p( Vector3(1,2,3),
Vector3(0,0,1) ); // Creates a plane at [1,2,3] with the normal [0,0,1]
float arr[4] = { 0, 1, 0, 0 };
Plane p(arr); // Creates a plane in XZ at the origin
Fields
- x component of the plane normal (A)
- y component of the plane normal (B)
- z component of the plane normal (D)
- w scalar distance to the plane from the origin (D)
This is the Cartesian form of the equation of a plane: Ax + By + C*z + D
Properties
- Normal: Returns the normal vector for the plane
- D: Returns the distance to the plane
Methods
- Comparison operators:
==
and!=
- Assignment operators:
=
- Normalize
- Dot: Performs a 4D dot product between a 4 vector and the plane
- DotCoordinate: Performs a point test against the plane, which returns the distance between the point and the plane.
- DotNormal: Performs a dot product against just the normal of the plane.
Statics
- Transform
Planes should be transformed by the inverse transpose of the matrix, which for pure rotations results in the same matrix as the original.
Remark
Plane can freely convert to and from a XMFLOAT4
and XMVECTOR
Further reading
For Use
- Universal Windows Platform apps
- Windows desktop apps
- Windows 11
- Windows 10
- Windows 8.1
- Windows 7 Service Pack 1
- Xbox One
Architecture
- x86
- x64
- ARM64
For Development
- Visual Studio 2022
- Visual Studio 2019 (16.11)
- clang/LLVM v12 - v18
- MinGW 12.2, 13.2
- CMake 3.20
Related Projects
DirectX Tool Kit for DirectX 12
Tools
All content and source code for this package are subject to the terms of the MIT License.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.