Giter Club home page Giter Club logo

counter-strikegl's Introduction

Hi, I'm Leo!

Bachelor in Computer Science at Instituto Federal de Educação, Ciência e Tecnologia do Maranhão

Postgraduate in A.I. at Universidade Federal de Viçosa

Software Engineer at Credifit

I'm Leonardo, I'm a big programming and data security enthusiast, I currently work as a Full-Stack.

In my free time I do projects focused on network security using A.I.

A little more about me...

const Leo = {
  code: [Javascript, NodeJS, Flutter, Ruby, Python, Java],
  testing: [Jest, Cypress, JUnit],
  tools: [AWS, Terraform, Prometheus, Rails],
  security: [HelmetJS, NetWatch]
}

counter-strikegl's People

Contributors

bulletsentence avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

counter-strikegl's Issues

Problemas na movimentação

As funções de movimentação causam conflitos

Seguinte codigo

void SpecialKeys(int key, int xx, int yy){

switch (key){

case GLUT_KEY_LEFT :
	angulo -= 0.03f;
	direcaox = sin(angulo);
	direcaoz = -cos(angulo);
	break;

case GLUT_KEY_RIGHT :
	angulo += 0.03f;
	direcaox = sin(angulo);
	direcaoz = -cos(angulo);
	break;

case GLUT_KEY_UP :
	direcaoy += 0.01f;
	break;

case GLUT_KEY_DOWN :
	direcaoy -= 0.01f;
	break;
}

}

void keyboard(unsigned char key, int x, int y) {

switch (key) {
case 27:
	exit(0);
	break;

case 119:
	x += direcaox * 0.1f;
	z += direcaoz * 0.1f;
	break;

case 115:
	x -= direcaox * 0.1f;
	z -= direcaoz * 0.1f;
	break;

default:
	break;
}
glutPostRedisplay();

}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.