The Vertex header
Code:
#pragma once
#include "Vector3D.h"
#include "stdafx.h"
class Vertex
{
public:
Vertex();
Vertex(float x, float y, float z, float w);
//Copy constructor
Vertex(const Vertex& v);
//Destructor
~Vertex();
//Accessors
Leave a comment: