| CAngulos._3d.Rendering._3DSVKRenderer.Main.Camera | |
| CAngulos.StrangeDataTypes.ChangedObjectReturn | |
| CAngulos._3d.ObjectRepresentation.Shapes.Circle2d | Represents a 2d circle |
| CAngulos._3d.ObjectRepresentation.Shapes.CircularShell3d | Represents a sphere / circular shell |
| CAngulos._3d.ObjectRepresentation.Translation.EulerAngles | Represents Euler angles. These are used to represent rotations, and are more intuitive than quaternions. These are the X rotation, Y rotation, and Z rotation, all in degrees. You can convert these to quaternions and back using MathUtilities.EulerAnglesToQuaternion(EulerAngles) and MathUtilities.QuaternionToEulerAngles(Quaternion). These do suffer from gimbal lock |
| CException | |
| CAngulos.Exceptions.ForceExitException | The program was forced to exit |
| CAngulos.Exceptions.MessageBoxException | A small exception that is thrown when a message error box is shown |
| CAngulos.Exceptions.UnexpectedCodePathException | Thrown when the program goes down a code path that should never be reached |
| CAngulos.StrangeDataTypes.GetClosestTriangleLineReturn | |
| CAngulos._3d.Components.IAngulosComponent | The main interface for a component that is managed by the ECS system |
| CAngulos._3d.Components.PhysicsComponents.ICompoundCollideable | A interface that can be derived from to allow objects to handle collisions |
| CAngulos._3d.Components.PhysicsComponents.PhysicsRigidBodyComponent | A component that represents a rigid body in the physics engine |
| CAngulos._3d.Components.PhysicsComponents.PhysicsPointMassComponent | A component that represents a point mass in physics |
| CAngulos._3d.Components.PhysicsComponents.PhysicsRigidBodyComponent | A component that represents a rigid body in the physics engine |
| CAngulos._3d.Components.RenderComponents.IRenderComponent | |
| CAngulos._3d.Components.RenderComponents.RigidRenderComponent | A component that renders a rigid body object |
| CAngulos._3d.Components.RenderComponents.RigidRenderComponent | A component that renders a rigid body object |
| CIAny | |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.InternalSVKRenderer | Handles all rendering internally. MainSVKRenderer is just a wrapper for this |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.ImGui.ImGuiRenderer | Handles rendering of ImGui elements |
| CAngulos.StrangeDataTypes.InputDeviceKeyAction< T > | Represents a set of input device, a input, and an action to perform when the input is triggered. T is a type of the key that is being pressed, such as Key or MouseButton |
| CAngulos.StrangeDataTypes.IOnlyExplicitMemoryArrays | |
| CAngulos.StrangeDataTypes.IParent< ChildType > | |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SVKWrappers.SVKPipeline | Wraps a Vulkan pipeline and its layout. Also stores the create info for both for potential recreation and reference |
| CAngulos._3d.Components.RenderComponents.IRenderDependantComponent | A interface that can be derived from to allow objects to call a method every frame |
| CISizeGettable | |
| CAngulos.StrangeDataTypes.EdgeArray | Test for the UnsafeMemoryObject class |
| CAngulos.StrangeDataTypes.TriangleArray | A test for the UnsafeMemoryHandledObject class |
| CAngulos._3d.ObjectRepresentation.Mesh | The class for holding info on the shape of an object |
| CAngulos._3d.ObjectRepresentation.Shapes.LineSegment3D | Represents a 3d line segment. LineSegment2D is the same for 2d |
| CAngulos._3d.ObjectRepresentation.Shapes.Triangle3D | Represents a 3d triangle |
| CAngulos._3d.ObjectRepresentation.SimulatedObject | An object in a scene in a world. Can have components, a index, mesh, and translation |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKWrappers.SVKImage | |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SVKWrappers.ISVKPushConstant | Represents a push constant. Very similar to uniforms, but can't be very large, in general no textures. The inheritor MUST be of a constant size, and less than 64 bytes |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.ISVKUniform | Represents a uniform. Must be a struct with sequential layout, and fixed size, and not a ref struct. It also must have a specific alignment, See https://vulkan-tutorial.com/Uniform_buffers/Descriptor_pool_and_sets at Alignment Requirements section. No other uniforms are specified in the default shaders other than MVPUniform, to show transformations, so this also requires custom shaders. For UpdateMappedPointerData, copy one instance of the uniform into the pointer, by doing something like making a span from the pointer with a length of 1, and setting the first element to your uniform instance |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.MVPUniform | Represents a model-view-projection uniform buffer object. Note, for uniforms the alignment of the members matters. See https://vulkan-tutorial.com/Uniform_buffers/Descriptor_pool_and_sets at Alignment Requirements section |
| CAngulos.UI.UIElements.IUIElement | Represents any UI element |
| CAngulos.UI.UIElements.Button | |
| CAngulos.UI.UIElements.Container | |
| CAngulos.UI.UIElements.DecimalSlider | |
| CAngulos.UI.UIElements.Label | |
| CAngulos.UI.IUIRenderer | Represents a renderer that draws anything in UIRoot |
| CAngulos.UI.ImGui.MainImGuiRenderer | |
| CAngulos._3d.ObjectRepresentation.Shapes.LineSegment2D | |
| CAngulos._3d.ObjectRepresentation.Movement | Represents an object moving |
| CAngulos.Simulation.ObjectHierarchy.ObjectLink | A link between two objects |
| CAngulos._3d.Physics.PhysicsCollisionData | Represents data about a collision that occurred between two objects in the physics simulation |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.QueueFamilyIndices | The queue family indices. Queue families are types of queues No idea why they are indices |
| CAngulos._3d.ObjectRepresentation.Shapes.Ray2d | Represents a ray in 2d space |
| CAngulos._3d.ObjectRepresentation.Shapes.Ray3d | Represents a ray in 3d space |
| CAngulos.StrangeDataTypes.Result | |
| CAngulos._3d.ObjectRepresentation.Hierarchies.Scene | A scene in the world |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.ShaderPassable< T > | Represents a value to be passed to a shader |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKWrappers.SVKBuffer | Represents a Vulkan buffer and all the data associated with it |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SVKWrappers.SVKCommandBufferRecorder | A class that handles the recording of command buffers |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKCommandPool | |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKWrappers.SVKDescriptorPool | |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKWrappers.SVKDescriptorSet | A simple wrapper around a DescriptorSet to help manage its lifecycle |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKWrappers.SVKDescriptorSetLayout | |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKObject | Represents a object that is being rendered |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SVKWrappers.SVKShader | Represents a shader |
| CAngulos._3d.Rendering._2DSVKRenderer.Main.SVKUniformDescriptors | Describes the uniforms used in a shader |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SVKVertex | |
| CAngulos._3d.Rendering._3DSVKRenderer.Main.SwapChainSupportDetails | Details of the graphics card's support for swapchains |
| CAngulos._3d.ObjectRepresentation.Translation.Transformation | Represents an objects' translation |
| CAngulos._3d.ObjectRepresentation.Shapes.Triangle2D | Represents a 2D triangle Triangle3D represents a 3D triangle |
| CAngulos.UI.UIHierarchy.UIWindow | |