Newer
Older
Import / research / 3d-octrees / jVertex.h
@John John on 29 Dec 2020 774 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       Filename:  jVertex.h
 *
 *    Description:  A vertext node
 *
 *        Version:  1.0
 *        Created:  31/05/2011 21:56:28
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#ifndef __J_VERTEX_H__
#define __J_VERTEX_H__


#include <jVector.h>
#include <jNormal.h>


class jVertex
{
public:
    jVertex(jVector3f& a_position, jNormal& a_normal, jVector2i a_uv);

private:
    jVector3f m_position;
    jNormal& m_normal;
    jVector2i m_uv;
};


#endif // __J_VERTEX_H__