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.
16 lines
252 B
C
16 lines
252 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
/* @brief relavant points of a net crossnod*/
|
||
|
|
class AFX_EXT_CLASS CFPointInside
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CFPointInside(void);
|
||
|
|
~CFPointInside(void);
|
||
|
|
|
||
|
|
void Add(double x, double y, double v, double s);
|
||
|
|
void One(void);
|
||
|
|
|
||
|
|
double smooth,x,y,v;
|
||
|
|
int n;
|
||
|
|
};
|