From 342403a02f8063903d0f38327430721d4d0ae331 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 20 Sep 2021 18:15:14 -0500 Subject: do ass1 --- dev/MinGfx/doc/api.md | 128 +++++++++++++++++++++++++------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) (limited to 'dev/MinGfx/doc/api.md') diff --git a/dev/MinGfx/doc/api.md b/dev/MinGfx/doc/api.md index 58c78eb..4683a39 100644 --- a/dev/MinGfx/doc/api.md +++ b/dev/MinGfx/doc/api.md @@ -1,64 +1,64 @@ -API - MinGfx Programming Reference Organized by Topic {#api} -========== - -# API by Topic - -| Application Class | -|-------------------| -| [GraphicsApp](@ref mingfx::GraphicsApp) | - - -| 3D Models | -|-----------| -| [QuickShapes](@ref mingfx::QuickShapes) | -| [Mesh](@ref mingfx::Mesh) | - - -| Color and Textures | -|--------------------| -| [Color](@ref mingfx::Color) | -| [Texture2D](@ref mingfx::Texture2D) | - - -| Graphics Math | -|---------------| -| [Matrix4](@ref mingfx::Matrix4) | -| [Point2](@ref mingfx::Point2) | -| [Point3](@ref mingfx::Point3) | -| [Vector2](@ref mingfx::Vector2) | -| [Vector3](@ref mingfx::Vector3) | -| [Ray](@ref mingfx::Ray) | -| [Quaternion](@ref mingfx::Quaternion) | -| [GfxMath](@ref mingfx::GfxMath) | - - -| Shader Programs | -|-----------------| -| [DefaultShader](@ref mingfx::DefaultShader) | -| - [DefaultShader::LightProperties](@ref mingfx::DefaultShader::LightProperties) | -| - [DefaultShader::MaterialProperties](@ref mingfx::DefaultShader::MaterialProperties) | -| [ShaderProgram](@ref mingfx::ShaderProgram) | - - -| User Interface | -|----------------| -| [CraftCam](@ref mingfx::CraftCam) | -| [UniCam](@ref mingfx::UniCam) | - - -| File I/O and System Routines | -|------------------------------| -| [Platform](@ref mingfx::Platform) | - - - - -# Coding Style - -The library follows the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html), in part as an example for students, since this style is also used in several courses. There are several things that programmers who are not familiar with the Google style might find unusual. These are the most common style rules to note: -- C++ source filenames are all lowercase with underscores, and a .cc extension is used instead of .cpp. -- Variable names are all lowercase with underscores. -- Class member variables are named the same as regular variables but with a trailing _, as in my\_member\_var\_. -- Functions start with capital letters unless they are small getter or setter methods. -- There are many other rules, a solid discussion of pros/cons, and an automated style checker [here](https://google.github.io/styleguide/cppguide.html). - +API - MinGfx Programming Reference Organized by Topic {#api} +========== + +# API by Topic + +| Application Class | +|-------------------| +| [GraphicsApp](@ref mingfx::GraphicsApp) | + + +| 3D Models | +|-----------| +| [QuickShapes](@ref mingfx::QuickShapes) | +| [Mesh](@ref mingfx::Mesh) | + + +| Color and Textures | +|--------------------| +| [Color](@ref mingfx::Color) | +| [Texture2D](@ref mingfx::Texture2D) | + + +| Graphics Math | +|---------------| +| [Matrix4](@ref mingfx::Matrix4) | +| [Point2](@ref mingfx::Point2) | +| [Point3](@ref mingfx::Point3) | +| [Vector2](@ref mingfx::Vector2) | +| [Vector3](@ref mingfx::Vector3) | +| [Ray](@ref mingfx::Ray) | +| [Quaternion](@ref mingfx::Quaternion) | +| [GfxMath](@ref mingfx::GfxMath) | + + +| Shader Programs | +|-----------------| +| [DefaultShader](@ref mingfx::DefaultShader) | +| - [DefaultShader::LightProperties](@ref mingfx::DefaultShader::LightProperties) | +| - [DefaultShader::MaterialProperties](@ref mingfx::DefaultShader::MaterialProperties) | +| [ShaderProgram](@ref mingfx::ShaderProgram) | + + +| User Interface | +|----------------| +| [CraftCam](@ref mingfx::CraftCam) | +| [UniCam](@ref mingfx::UniCam) | + + +| File I/O and System Routines | +|------------------------------| +| [Platform](@ref mingfx::Platform) | + + + + +# Coding Style + +The library follows the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html), in part as an example for students, since this style is also used in several courses. There are several things that programmers who are not familiar with the Google style might find unusual. These are the most common style rules to note: +- C++ source filenames are all lowercase with underscores, and a .cc extension is used instead of .cpp. +- Variable names are all lowercase with underscores. +- Class member variables are named the same as regular variables but with a trailing _, as in my\_member\_var\_. +- Functions start with capital letters unless they are small getter or setter methods. +- There are many other rules, a solid discussion of pros/cons, and an automated style checker [here](https://google.github.io/styleguide/cppguide.html). + -- cgit v1.2.3