⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seqend.c

📁 AutoCAD DWG-file viewer
💻 C
字号:
/****************************************************************/
/*			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			*/
/****************************************************************/

#include "dwgin.h"

PUBLIC AcadSeqend *AcadSeqend__create( void )

{
return( ( AcadSeqend * )get_memory( sizeof( AcadSeqend ) ) );
}


PUBLIC void AcadSeqend__delete( AcadSeqend *me )

{
free( ( char * )me );
}


PUBLIC int AcadSeqend__length( AcadSeqend *me )

{
return( me->common.size );
}


PUBLIC void AcadSeqend__read( AcadSeqend *me )

{
AcadEntity__read_elevation_etc( &me->common,true,true );
}


PUBLIC void AcadSeqend__dump_to_debug_file( AcadSeqend *me )

{
dprintf( "SEQEND\n" );
AcadEntity__dump_to_debug_file( &me->common );
}


PUBLIC void AcadSeqend__dxfout( AcadSeqend *me )

{
dxf_string( 0,"SEQEND" );
AcadEntity__dxfout( &me->common );
}


PUBLIC void AcadSeqend__write( AcadSeqend *me, INT32 parent )

{
int size;

put_UINT8( 0x11 );  /* SEQEND TYPE */
size = 1 + sizeof( INT32 );
AcadEntity__write_elevation_etc( &me->common,false,true,size );
if ( debugger ) dprintf( "\tseqend entity\n" );
put_INT32 (parent);
}

⌨️ 快捷键说明

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