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

📄 transform3dinfo.cpp

📁 3D reconstruction, medical image processing from colons, using intel image processing for based clas
💻 CPP
字号:
// Transform3DInfo.cpp: implementation of the RxTransform3DInfo class.////////////////////////////////////////////////////////////////////////////	Title: Set information related to geometrical transformation////////////////////////////////////////////////////////////////////////////	Author: Helen Hong, 3DMed co. LTD//	138-dong 417-ho Seoul National Univ.//	San 56-1 shinlim-dong kwanak-gu, Seoul, Korea//	Email. hlhong@cglab.snu.ac.kr//	//	Date	: 2002. 9. 6.//	Update	: 2002. 9. 16.////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	include//////////////////////////////////////////////////////////////////////#include "stdafx.h"#include "Transform3DInfo.h"////////////////////////////////////////////////////////////////////////	define//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	declaration////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Construction/Destruction//////////////////////////////////////////////////////////////////////RxTransform3DInfo::RxTransform3DInfo(){	Initialize();}RxTransform3DInfo::~RxTransform3DInfo(){}////////////////////////////////////////////////////////////////////////********************************************************************//	Initialize(): initialize geometrical transformation//********************************************************************BOOL RxTransform3DInfo::Initialize(){	xmove	= ymove		= zmove		= 0.0;	xscale	= yscale	= zscale	= 1.0;	xrot	= yrot		= zrot		= 0.0;	xshear  = yshear    = zshear    = 0.0;	rot_c_x	= rot_c_y	= rot_c_z	= 0.0;	viewangle						= 45.0;	return TRUE;}

⌨️ 快捷键说明

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