You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#pragma once
|
|
|
|
struct CColLine
|
|
{
|
|
// NB: this has to be compatible with two CVuVectors
|
|
CVector p0;
|
|
int pad0;
|
|
CVector p1;
|
|
int pad1;
|
|
|
|
CColLine(void) { };
|
|
CColLine(const CVector &p0, const CVector &p1) { this->p0 = p0; this->p1 = p1; };
|
|
void Set(const CVector &p0, const CVector &p1);
|
|
}; |