本文整理汇总了C++中Video_Win::chc方法的典型用法代码示例。如果您正苦于以下问题:C++ Video_Win::chc方法的具体用法?C++ Video_Win::chc怎么用?C++ Video_Win::chc使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Video_Win
的用法示例。
在下文中一共展示了Video_Win::chc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: WStd
Video_Win Video_Win::WStd(Pt2di sz,REAL zoom,bool all_pal,bool SetClikCoord)
{
Video_Win * aPW = PtrWStd(Pt2di(Pt2dr(sz)*zoom),all_pal);
Video_Win aRes = aPW->chc(Pt2dr(-0.5,-0.5),Pt2dr(zoom,zoom),SetClikCoord);
delete aPW;
return aRes;
}
示例2: WiewAv
Output Video_Win::WiewAv(Pt2di sz,Pt2di szmax)
{
REAL zoom = ElMin(szmax.x/(REAL)sz.x,szmax.y/(REAL)sz.y);
Video_Win res = WStd(sz,zoom,false);
Video_Win w0 = res.chc(Pt2dr(0,0),Pt2dr(1,1));
ELISE_COPY(w0.all_pts(),P8COL::black,w0.odisc());
return res.odisc() << (int) P8COL::red;
}