| 435 | /////////////////////////////////////////// |
| 436 | |
| 437 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void line_add(Vec3 start, Vec3 end, Color32 color_start, Color32 color_end, float thickness); |
| 438 | //[DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void line_addv(line_point_t start, line_point_t end); |
| 439 | //[DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void line_add_list(const Vec3* points, int count, Color32 color, float thickness); |
| 440 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void line_add_listv([In] LinePoint[] points, int count); |