Skip to content

Instantly share code, notes, and snippets.

View kevinmungai's full-sized avatar

Kevin Mungai kevinmungai

View GitHub Profile
// lab assignment
// Triangles Pattern
// Also included is Varying Sizes.
#include <windows.h> // for MS Windows
#include <GL/glut.h> // GLUT, include glu.h and gl.h
#include <GL/gl.h>
/* Initialize OpenGL Graphics */
void initGL();
@kevinmungai
kevinmungai / labTask.cpp
Created November 2, 2017 09:20
f (x) = e ^ -x cos (2 . pi . x)
// lab assignment
// f (x) = e ^ -x cos (2 pi x)
#include <windows.h> // for MS Windows
#include <GL/glut.h> // GLUT, include glu.h and gl.h
#include <GL/gl.h>
#include <cmath>
#include <math.h>
/* Initialize OpenGL Graphics */
GLdouble special (GLdouble x);
@kevinmungai
kevinmungai / CurveOpenGL.cpp
Last active October 31, 2017 09:26
Creating a Curve in OpenGL using the equation y = x ^ 2
/*
* Drawing the curve y = x ^ 2 in OpenGL
* x ranges from (-10) to 10
* It's made to fit the entire Viewport
*/
#include <windows.h> // for MS Windows
#include <GL/glut.h> // GLUT, include glu.h and gl.h
#include <GL/gl.h>
/* Initialize OpenGL Graphics */
@kevinmungai
kevinmungai / diamondPattern.cpp
Created October 10, 2017 09:57
Diamond Pattern Using OpenGL in C++
/*
The Code Below is used to develop a Diamond Pattern.
1. Start with Identifying the First Diamond
2. Put in the coordinates for the First Diamind
3. Create a for-loop to to create diamonds at the same time
4. Introduce an outer for-loop to cater for the y - axis.
*/
@kevinmungai
kevinmungai / checkers.cpp
Last active October 10, 2017 09:11
Checker Board Pattern using C++
/*
The Code Below is used to develop a Checker Board Pattern.
1. Start with Identifying the First Square
2. Put in the coordinates for the First Square
3. Create a for-loop to to create squares at the same time
4. Introduce a variable to help keep track of the color. Using an IF Statement.
5. Introduce an outer for-loop to cater for the y - axis.
*/
@kevinmungai
kevinmungai / array-max.cpp
Created May 17, 2017 09:34
Finding the maximum value in an array
#include <iostream>
using namespace std;
int main() {
int i,n;
//float arr[100];
cout << "Enter total number of elements (1 to 100)"<< endl;
cin >> n;