#ifndef __HIT_LINE_H #define __HIT_LINE_H typedef struct h_line { double X1, Y1, Z1; //---in point--- double X2, Y2, Z2; //---out point--- } Hit_Line; /*---structure declaration---*/ Hit_Line hit_line; #endif /* __HIT_LINE_H */