https://github.com/NeuroanatomyAndConnectivity/vidview
Raw File
Tip revision: a08f8878e4d91ae2d7a73ffc20168146eac1c29e authored by boettger on 04 March 2013, 18:09:51 UTC
ROI & connectivity drawing
Tip revision: a08f887
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