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
connection.h
#ifndef CONNECTION_H
#define CONNECTION_H

#include <QList>
#include <QVector3D>

#include <QGLWidget>

class Connection
{
public:
    Connection(QVector3D fn, QVector3D tn, float v);
    QVector3D fn, tn;
    float v;

    float r,g,b;

    int origInd; //original Index (for access to same connection in different space)

    double length();

};

#endif // CONNECTION_H
back to top