From 9b83919815f6a6ce5d73da1c28483970d0ca5589 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 3 Feb 2021 14:22:28 -0600 Subject: added dev/MinGfx/ --- dev/MinGfx/docs/html/api.html | 168 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 dev/MinGfx/docs/html/api.html (limited to 'dev/MinGfx/docs/html/api.html') diff --git a/dev/MinGfx/docs/html/api.html b/dev/MinGfx/docs/html/api.html new file mode 100644 index 0000000..5e0df60 --- /dev/null +++ b/dev/MinGfx/docs/html/api.html @@ -0,0 +1,168 @@ + + + + + + + +MinGfx Toolkit: API - MinGfx Programming Reference Organized by Topic + + + + + + + + + + + + +
+
+ + + + + + +
+
MinGfx Toolkit +  1.0 +
+
A minimal library for writing cross-platform (Windows, OSX, linux) graphics programs.
+
+
+ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+
API - MinGfx Programming Reference Organized by Topic
+
+
+

+

+API by Topic

+ + + + + +
Application Class
GraphicsApp
+ + + + + + + +
3D Models
QuickShapes
Mesh
+ + + + + + + +
Color and Textures
Color
Texture2D
+ + + + + + + + + + + + + + + + + + + +
Graphics Math
Matrix4
Point2
Point3
Vector2
Vector3
Ray
Quaternion
GfxMath
+ + + + + + + + + + + +
Shader Programs
DefaultShader
- DefaultShader::LightProperties
- DefaultShader::MaterialProperties
ShaderProgram
+ + + + + + + +
User Interface
CraftCam
UniCam
+ + + + + +
File I/O and System Routines
Platform
+

+Coding Style

+

The library follows the Google C++ Style Guide, 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.
  • +
+
+
+ + + + + -- cgit v1.2.3