https://github.com/NeuroanatomyAndConnectivity/vidview
Revision c42ea2ebea6e1289af68edfecd9cff30dd94da26 authored by boettger on 27 January 2013, 18:49:11 UTC, committed by boettger on 27 January 2013, 18:49:11 UTC
1 parent 67d965f
Raw File
Tip revision: c42ea2ebea6e1289af68edfecd9cff30dd94da26 authored by boettger on 27 January 2013, 18:49:11 UTC
Update README.md
Tip revision: c42ea2e
surface.h
#ifndef SURFACE_H
#define SURFACE_H

#include <QList>
#include "triangle.h"
#include <QString>

class Surface
{
public:
    Surface(QList<Triangle*> tris);
    int nv,nt;
    double *verts;
    double *norms;
    int *inds;
    QList<Triangle*> tris;
    void paintGL();
    void sortTriangles();
    void setAlpha(double a);
};

#endif // SURFACE_H
back to top