📄 xdist.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 */
/****************************************************************/
PUBLIC XDistance *XDistance__create( void )
{
return( ( XDistance * )get_memory( sizeof( XDistance ) ) );
}
PUBLIC void XDistance__delete( XDistance *me )
{
free( ( char * )me );
}
PUBLIC void XDistance__read( XDistance *me )
{
get_DOUBLE( &me->x );
me->size = sizeof( me->x );
}
PUBLIC void XDistance__dxfout( XDistance *me )
{
dxf_DOUBLE( 1041,me->x );
}
PUBLIC void XDistance__dump_to_debug_file( XDistance *me )
{
dprintf( "\t\tdistance %lf\n",me->x );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -