代码搜索:Rect
找到约 10,000 项符合「Rect」的源代码
代码结果 10,000
www.eeworm.com/read/279147/10460886
gif rect.gif
www.eeworm.com/read/160984/10465086
gif rect.gif
www.eeworm.com/read/279059/10471858
pic rect.pic
www.eeworm.com/read/279057/10473791
gif rect.gif
www.eeworm.com/read/353007/10482419
gif rect.gif
www.eeworm.com/read/353007/10483459
gif rect.gif
www.eeworm.com/read/160841/10488870
class rect.class
www.eeworm.com/read/424063/10500189
m rect.m
function y=rect(x)
% y=rect(x), determines the rectangular function
y=((x>-0.5) & (x
www.eeworm.com/read/424004/10507256
cpp rect.cpp
#include
#include "rect.h"
using namespace std;
Rectangle::Rectangle(int l , int t, int r, int b) {
left = l; top = t;
right = r; bottom = b;
} // 构造函数,带默认参数,缺省值为全0,在声明中指定
void
www.eeworm.com/read/424004/10507268
h rect.h
class Rectangle {
int left, top ;
int right, bottom;
public:
Rectangle(int l=0, int t=0, int r=0, int b=0);
~Rectangle(){}; //析构函数,在此函数体为空
void Assign(int l, int t, int r, int b);
void S