代码搜索:CRect
找到约 1,773 项符合「CRect」的源代码
代码结果 1,773
www.eeworm.com/read/138003/13274419
cpp crect.cpp
#include "../GameH.h"
void CreateRect(RECT &rect,int x,int y,int dx,int dy)
{
rect.left=x;
rect.top=y;
rect.right=dx;
rect.bottom=dy; //修改RECT
}
void ClearRect(RECT
www.eeworm.com/read/138003/13274423
h crect.h
#pragma once
void CreateRect(RECT &rect,int,int,int,int); //设定一个RECT
void ClearRect(RECT &rect); //设定一个RECT
www.eeworm.com/read/128578/14290882
cpp crect.cpp
////////////////////////////////////////////////////////////////////////
//
// 作者:
// 创建日期:
// 最后修改日期:
//
////////////////////////////////////////////////////////////////////////
#include
www.eeworm.com/read/128578/14290899
h crect.h
////////////////////////////////////////////////////////////////////////
//
// 作者:
// 创建日期:
// 最后修改日期:
// 说明:本类是为兼容MFC中CRect类而设计,它与地理信息系统CGIS_Rect类
// 在实现上有所不同(注意方法CRect::NormalizeRect的
www.eeworm.com/read/380530/2656708
h crect.h
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
$Id: CRect.h,v 1.3 2002/08/06 20:10:46 dal
www.eeworm.com/read/354521/3076861
h crect.h
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
$Id: CRect.h,v 1.3 2002/08/06 20:10:46 dal
www.eeworm.com/read/249221/4453117
svn-base crect.h.svn-base
K 13
svn:eol-style
V 6
native
K 12
svn:keywords
V 23
Author Date Id Revision
END
www.eeworm.com/read/249221/4453297
svn-work crect.h.svn-work
K 25
svn:wc:ra_dav:version-url
V 48
/svnroot/ffdshow/!svn/ver/1999/trunk/src/Crect.h
END
www.eeworm.com/read/249221/4453449
svn-work crect.h.svn-work
K 13
svn:eol-style
V 6
native
K 12
svn:keywords
V 23
Author Date Id Revision
END
www.eeworm.com/read/249221/4453572
svn-base crect.h.svn-base
#ifndef _CRECT_H_
#define _CRECT_H_
struct CPoint :POINT
{
CPoint(void) {}
CPoint(int Ix,int Iy) {x=Ix;y=Iy;}
inline void operator-=(const CPoint &pt)
{
x-=pt.x;
y-=pt.y;
}
inline void