代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/437272/1834723
java rectangle.java
package com.thinkenjoy.feitian;
//Download by http://www.codefans.net
/**
* 处理边界与碰撞的问题
*/
public class Rectangle {
/**
* 矩形的范围
*
*/
public Rectangle() {
this(0, 0, 0, 0
www.eeworm.com/read/430343/1932720
java rectangle.java
package test;
public class Rectangle{
private int width;
private int height;
Point origin;
public Rectangle(int w, int h, Point p){
width = w;
height = h;
origin = p;
}
www.eeworm.com/read/427958/1964345
java rectangle.java
package org.jflashme;
class Rectangle extends Point
{
int width=0,height=0;
Rectangle()
{
}
Rectangle(int width,int height)
{
this.width=width;
this.
www.eeworm.com/read/427743/1966433
h rectangle.h
//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() {return
www.eeworm.com/read/427743/1966436
h rectangle.h
//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;}
floa
www.eeworm.com/read/427042/1983643
h rectangle.h
/*
* rectangle filling function
* Copyright (c) 2003 Michael Niedermayer
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify
www.eeworm.com/read/424146/2018261
h rectangle.h
//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() {return
www.eeworm.com/read/424146/2018264
h rectangle.h
//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;}
floa
www.eeworm.com/read/420663/2067758
java rectangle.java
package com.chapter2;
public class Rectangle
{
//定义类成员变量
private double width;
private double height;
private double rectangleLength;
private double rectangleArea;
//初始化类成员变量
publ