view.h

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

H
42
字号
/****************************************************************/
/*			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
	{
	UINT8 flags;
	char name[ 0x20 ];
	DOUBLE height;
	DOUBLE center_x;
	DOUBLE center_y;
	DOUBLE width;
	DOUBLE view_x;
	DOUBLE view_y;
	DOUBLE view_z;
	INT16 mode;
	DOUBLE target_x;
	DOUBLE target_y;
	DOUBLE target_z;
	DOUBLE lens_length;
	DOUBLE twist_angle;
	DOUBLE front_clipping_plane;
	DOUBLE back_clipping_plane;
	INT16 viewmode;
	} AcadView;


void AcadView__read( AcadView *me );
void AcadView__write( AcadView *me );
void AcadView__dxfout( AcadView *me );
void AcadView__dump_to_debug_file( AcadView *me );
AcadView *AcadView__create( void );
void AcadView__delete( AcadView *me );

⌨️ 快捷键说明

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