代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/259229/4345258
hx rectangle.hx
package flash.geom;
extern class Rectangle {
var left : T;
var top : T;
var right : T;
var bottom : T;
// OR
var x : T;
var y : T;
var width : T;
var height : T;
// OR
var size : Poi
www.eeworm.com/read/259229/4345394
hx rectangle.hx
package flash.geom;
extern class Rectangle {
function new(?x : Float, ?y : Float, ?width : Float, ?height : Float) : Void;
var bottom : Float;
var bottomRight : flash.geom.Point;
function clone()
www.eeworm.com/read/254397/4383621
java rectangle.java
package lib;
public class Rectangle{
public int x;
public int y;
public int width;
public int height;
public Rectangle(){
}
public Rectangle(int x,int y,int width,int heigh
www.eeworm.com/read/162614/5535112
java rectangle.java
/* Rectangle.java -- represents a graphics rectangle
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redi
www.eeworm.com/read/162519/5544644
java rectangle.java
/* Rectangle.java -- represents a graphics rectangle
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redi
www.eeworm.com/read/162342/5548246
java rectangle.java
/*
* $Id: Rectangle.java,v 1.41 2002/07/09 10:41:40 blowagie Exp $
* $Name: $
*
* Copyright 1999, 2000, 2001, 2002 by Bruno Lowagie.
*
* The contents of this file are subject to the Mozilla Pub
www.eeworm.com/read/156620/5610995
java rectangle.java
// rectangle类的定义
class rectangle
{
int width;
int height;
int area()
{
return weight*height;
}
int perimeter()
{
return 2*(width+height);
}
}
www.eeworm.com/read/153151/5652459
java rectangle.java
package com.javapatterns.liskov.version3;
public class Rectangle implements Quadrangle
{
private long width;
private long height;
public void setWidth(long width)
{
www.eeworm.com/read/153151/5652461
java rectangle.java
package com.javapatterns.liskov.version4;
public class Rectangle
{
private long width;
private long height;
public void setWidth(long width)
{
this.width = width
www.eeworm.com/read/153151/5652464
java rectangle.java
package com.javapatterns.liskov.version2;
public class Rectangle
{
private long width;
private long height;
public void setWidth(long width)
{
this.width = width