setaspectratio

setaspectratio用於設定當前縮放因子

基本介紹

  • 外文名:setaspectratio
  • 功 能:設定當前縮放因子
  • 類別:函式
  • 用 法:void far setaspectratio
簡介,程式例,

簡介

函式名:setaspectratio
功能:
函式原型:void setaspectratio(
float xasp,
float yasp
);
參數:xasp:x方向上的縮放因子。例如繪製寬度為100的矩形,實際繪製寬度為100*xasp。
yasp:y方向上的縮放因子。例如繪製高度為100的矩形,實際繪製高度為100*yasp。

程式例

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int xasp, yasp, midx, midy;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
setcolor(getmaxcolor());
/* get current aspect ratio settings */
getaspectratio(&xasp, &yasp);
/* draw normal circle */
circle(midx, midy, 100);
getch();
/* claer the screen */
cleardevice();
/* adjust the aspect for a wide circle */
setaspectratio(xasp/2, yasp);
circle(midx, midy, 100);
getch();
/* adjust the aspect for a narrow circle */
cleardevice();
setaspectratio(xasp, yasp/2);
circle(midx, midy, 100);
/* clean up */
getch();
closegraph();
return 0;
}

相關詞條

熱門詞條

聯絡我們