/*-----------------------------------------------------------------------------
	File:		UgFundScreen2Drw.c
	Description:	demo screen-to-drawing coord xform

            PTC             File
   Date   Version   Author  Vers  Comment
--------- -------  -------- ----- ---------------------------------------------
04-Dec-97 H-02-02  AWY/CHI    $$1 setup
-----------------------------------------------------------------------------*/


/*---------------------- Pro/Toolkit Includes ------------------------*/
#include <ProToolkit.h>
#include <ProAsmcomppath.h>
#include <ProObjects.h>

/*---------------------- Pro/Develop Includes ------------------------*/
#include <prodev_types.h>

/*---------------------- Function Prototypes -------------------------*/
void UserScreenToDwg ();

void UserScreenToDwg (
    Prohandle drawing,
    ProPoint3d scn_point,
    ProPoint3d drw_point)
{
    wchar_t    w_size[10];
    ProMatrix  matrix;

    prodb_drawing_sheet_info(drawing, w_size, matrix);

    ProPntTrfEval(scn_point, matrix, drw_point);
}
