insert.h

来自「AutoCAD DWG-file viewer」· C头文件 代码 · 共 28 行

H
28
字号
/****************************************************************/
/*			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 x,y,x_scale,y_scale,z_scale,rotation;
	INT16 block_number;
	DOUBLE column_spacing,row_spacing;
	INT16 columns,rows,column;
	} AcadInsert;

AcadInsert *AcadInsert__create( void );
int AcadInsert__length( AcadInsert *me );
void AcadInsert__delete( AcadInsert *me );
void AcadInsert__read(  AcadInsert *me );
void AcadInsert__write(  AcadInsert *me );
void AcadInsert__dump_to_debug_file( AcadInsert *me );
void AcadInsert__dxfout( AcadInsert *me );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?