This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This explains how to setup for GitHub projects which automatically generates Doxygen code documentation and publishes the documentation to the gh-pages
branch using Travis CI.
This way only the source files need to be pushed to GitHub and the gh-pages branch is automatically updated with the generated Doxygen documentation.
Get an account at Travis CI. Turn on Travis for your repository in question, using the Travis control panel.
To create a clean gh-pages
branch, with no commit history, from the master branch enter the code below in the Git Shell. This will create a gh-pages branch with one file, the README.md
in it. It doesn't really matter what file is uploaded in it since it will be overwritten when the automatically generated documentation is published to th
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
#pragma once | |
/* | |
_____.___. __ __ .__ | |
\__ | | ____ _/ |_ _____ ____ ____ _/ |_ | |__ ____ _______ | |
/ | |_/ __ \ \ __\ \__ \ / \ / _ \ \ __\| | \ _/ __ \ \_ __ \ | |
\____ |\ ___/ | | / __ \_| | \( <_> ) | | | Y \\ ___/ | | \/ | |
/ ______| \___ > |__| (____ /|___| / \____/ |__| |___| / \___ > |__| | |
\/ \/ \/ \/ \/ \/ | |
__________ _____ .__ .__ |
/* | |
File: ExceptionTest.c | |
Contains: Test code for Mach exception handling. | |
Written by: DTS | |
Copyright: Copyright (c) 2006 by Apple Computer, Inc., All Rights Reserved. | |
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. |
function apply_base_settings() | |
kind "ConsoleApp" | |
language "C++" | |
files { "**.h", "**.cpp", "External/*.c", "External/*.h", "External/*.cpp", "External/json/**" } | |
excludes { "External/libRocket/**" } | |
includedirs {".", "./External", "./External/libRocket/Include"} | |
end | |
function apply_spu_settings(dir, symbol_name) | |
kind "ConsoleApp" |
//1.27323954 = 4/pi | |
//0.405284735 =-4/(pi^2) | |
/********************************************************* | |
* low precision sine/cosine | |
*********************************************************/ | |
//always wrap input angle to -PI..PI | |
if (x < -3.14159265) | |
x += 6.28318531; |