请输入您要查询的百科知识:

 

词条 D3TRANSLATE
释义

DOS SVGACC图形开发库函数

原型 extern void far d3translate (int points, int xtrans, int ytrans, int ztrans, D3Point far *inary, D3Point far *outary)

输入 numpoints - 被平移的点数

xtrans - 沿X轴平移的距离

ytrans - 沿Y轴平移的距离

ztrans - 沿Z轴平移的距离

inary - 指向包含待平移点数组的D3Point型指针

输出 无返回值

outary - 指向包含平移后点数组的D3Point型指针

用法 D3TRANSLATE提取inary中的三维点并且将它们沿每个轴平移指定的象素点。结果通过outary返回,outary可与inary共用一个空间。此函数假定outary已合适分配.

例子

/*

* shows d3translate works

*/

#include <stdlib.h>

#include <conio.h>

#include "svgacc.h"

D2Point plot[8];

void drwcube(void);

void main(void)

{

int vmode,i,dummy;

ProjParameters proj;

D3Point tcube[8];

D3Point cube[8] = { { 100,-100, 100},

{ 100,-100,-100},

{ 100, 100,-100},

{ 100, 100, 100},

{-100,-100, 100},

{-100,-100,-100},

{-100, 100,-100},

{-100, 100, 100}};

vmode = videomodeget();

if (!whichvga() || (whichmem() < 512))

exit(1);

res640();

proj.eyex = -1040;

proj.eyey = -600;

proj.eyez = -1200;

proj.scrd = 1700;

proj.theta = 30;

proj.phi = 45;

for(i=0;i<=400;i+=8)

{

d3translate(8,i,i,i,cube,tcube);

dummy = d3project(8,&proj,tcube,plot);

drwcube();

sdelay(2);

drwcube();

}

for(i=400;i>=0;i-=8)

{

d3translate(8,i,i,i,cube,tcube);

dummy = d3project(8,&proj,tcube,plot);

drwcube();

sdelay(2);

drwcube();

}

drwcube();

getch();

videomodeset(vmode);

}

void drwcube(void)

{

int j;

for(j=0;j<=2;j++)

drwline(2,10,plot[j].x,plot[j].y,plot[j+1].x,plot[j+1].y);

drwline(2,10,plot[3].x,plot[3].y,plot[0].x,plot[0].y);

for(j=4;j<=6;j++)

drwline(2,10,plot[j].x,plot[j].y,plot[j+1].x,plot[j+1].y);

drwline(2,10,plot[7].x,plot[7].y,plot[4].x,plot[4].y);

for(j=0;j<=3;j++)

drwline(2,10,plot[j].x,plot[j].y,plot[j+4].x,plot[j+4].y);

return;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/24 10:17:48