📄 line.h
字号:
/****************************************************************/
/* COPYRIGHT NOTICE */
/* ---------------- */
/* All software in this listing remain the strict copyright */
/* of Ilija Kovacevic and cannot be copied or used in any way */
/* except by written permission of Ilija Kovacevic. */
/* */
/* Copyright (c) 1992 Ilija Kovacevic */
/* www.kov.com email ilija@kov.com */
/****************************************************************/
typedef struct
{
AcadEntity common;
DOUBLE x1,x2,y1,z1,y2,z2;
} AcadLine;
AcadLine *AcadLine__create( void );
void AcadLine__delete( AcadLine *me );
void AcadLine__read( AcadLine *me );
void AcadLine__write( AcadLine *me );
void AcadLine__dump_to_debug_file( AcadLine *me );
void AcadLine__dxfout( AcadLine *me );
int AcadLine__length( AcadLine *me );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -