代码搜索:rectangle

找到约 10,000 项符合「rectangle」的源代码

代码结果 10,000
www.eeworm.com/read/304657/3791684

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/304657/3793178

java rectangle.java

package java.awt; /** * class Rectangle - represents a (point, extension) tuple * * Copyright (c) 1998 * Transvirtual Technologies Inc. All rights reserved. * * See the file "license.terms"
www.eeworm.com/read/302553/3825116

java rectangle.java

public class Rectangle { //受保护的member protected int x; protected int y; protected int width; protected int height; public Rectangle() { } public Rectang
www.eeworm.com/read/300363/3847038

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/298430/3866091

java rectangle.java

/* * Rectangle.java * * Created on 2007年10月3日, 上午1:42 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package ch08.shape; /**
www.eeworm.com/read/298430/3866105

java rectangle.java

public class Rectangle extends GeometricObject { private double width; private double height; /** Construct a rectangle with default properties */ public Rectangle() { this(1.0, 1.0); }
www.eeworm.com/read/293714/3929098

java rectangle.java

/* * Created on 2005-1-9 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package shape; import java.awt.Point
www.eeworm.com/read/292740/3942041

java rectangle.java

package opusmicro.demos.game; import javax.microedition.lcdui.Canvas; import javax.microedition.lcdui.Graphics; public class Rectangle implements Runnable{ final static int EVENT_KEY_PRESSED
www.eeworm.com/read/292670/3950518

c rectangle.c

/* Produce a rectangular wave on output 0 of a parallel port */ #include #include #include #include #include #include
www.eeworm.com/read/290300/3980446

java rectangle.java

package chapter7; public class Rectangle extends GraphicObjct { public void draw() { //此处,省略画矩形实现 } }