Skip to content

Latest commit

 

History

History
99 lines (89 loc) · 2.36 KB

README.md

File metadata and controls

99 lines (89 loc) · 2.36 KB

Coding-Math-Mono

Coding math

The Coding math series was originally created by Keith Peters written in javascript. These are the links to his work

Note

There are some episodes that do not exactly replicate the video tutorial but the base concept is covered for all episodes nonetheless.

About

This repository is going to be the Monogame implementation of CodingMath series.

How To Run

To run particular episode Change line number 11 in Program.cs file to the desried episode class name

For example to run episode 2, the code should be
using (var game = new Episode2())
    game.Run();

Screenshots

    Screenshots of some of the topics included in the project.
  • Working of 3D graphics

  • Edge Handling
  • Easing
  • Kinematics

  • Fractals

  • Psuedo Random Number Generator

  • Verlet Integration
  • Basic Spring Physics
  • Graity
  • Isometric Tiles
  • A simple Game!