代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/381758/2641316
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re
www.eeworm.com/read/381758/2641336
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re
www.eeworm.com/read/381758/2641360
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
public Re
www.eeworm.com/read/379657/2670860
java rectangle.java
/*
* $Id: Rectangle.java 3178 2008-03-19 17:34:05Z blowagie $
* $Name$
*
* Copyright 1999, 2000, 2001, 2002 by Bruno Lowagie.
*
* The contents of this file are subject to the Mozilla Public Lice
www.eeworm.com/read/379193/2674777
c rectangle.c
/* Produce a rectangular wave on output 0 of a parallel port */
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/377893/2695186
cs rectangle.cs
using System;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle
{
private int xp, yp, wr, hr;
public Rectangle(int x
www.eeworm.com/read/377893/2695203
cs rectangle.cs
using System;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle
{
private int xp, yp, wr, hr;
public Rectangle(int x
www.eeworm.com/read/377893/2695224
cs rectangle.cs
using System;
using System.Drawing ;
namespace CsharpPats
{
///
/// Draws a rectangle using a supplied Graphics object
///
public class Rectangle {
private int x, y,
www.eeworm.com/read/377893/2695242
cs rectangle.cs
using System;
using System.Drawing ;
namespace CsharpPats
{
///
/// Summary description for Rectangle.
///
public class Rectangle:Shape {
public Rectangle(int x, in
www.eeworm.com/read/377893/2695554
cs rectangle.cs
using System;
namespace csPatterns {
public class Rectangle {
private int x1, x2, y1, y2;
private int w, h;
public Rectangle() { }
//-----
public void init(int x, int y) {