Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
new file using vectors
  • Loading branch information
brajmeena authored Mar 11, 2018
1 parent 511f112 commit 58968ce
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions ed.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#include <iostream>
#include <vector>

using namespace std;


class vertex{
float x;
float y;
float z;

std::vector<vertex> v;

};

class projection{

std::vector<vertex> frontview;

std::vector<vertex> sideview;

std::vector<vertex> topview;
};

class twodtothreed{
projection front_view;
projection side_view;
projection top_view;

void crete3D(projection x, projection y, projection z){

}
};

class threedtotwod{

std::vector<vertex> threeD_points;

void create_frontview (std::vector<vertex> x){

}

void create_sideview (std::vector<vertex> x){

}

void create_topview (std::vector<vertex> x){

}

};


int main()
{
return 0;
}

0 comments on commit 58968ce

Please sign in to comment.