代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/110993/15520518
cpp rectangle.cpp
//: C09:Rectangle.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Accessors & mutators
www.eeworm.com/read/110881/15523675
rar rectangle.rar
www.eeworm.com/read/109555/15554463
h rectangle.h
//Begin of Rectangle.h
class Point //基类声明
{
public:
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X;}
float GetY(
www.eeworm.com/read/109555/15554465
h rectangle.h
//Begin of Rectangle.h
class Point //基类Point类的定义
{
public: //公有函数成员
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X
www.eeworm.com/read/109554/15554597
h rectangle.h
//Begin of Rectangle.h
class Point //基类声明
{
public:
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X;}
float GetY(
www.eeworm.com/read/109554/15554599
h rectangle.h
//Begin of Rectangle.h
class Point //基类Point类的定义
{
public: //公有函数成员
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X
www.eeworm.com/read/108721/15577919
java rectangle.java
/* Generated by Together */
public class Rectangle extends Shape {
private double x1,y1,x2,y3;
public Rectangle (Drawing drawing, double x1,double y1, double x2, double y2){
supe