代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3282744
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/336126/3353927
java rectangle.java
import java.awt.*;
public class Rectangle extends BoundedShape {
public Rectangle()
{
super();
}
public Rectangle( int x1, int y1, int x2, int y2 )
{
super( x1,
www.eeworm.com/read/335758/3356391
h rectangle_as.h
// Rectangle_as.h: ActionScript "Rectangle" class, for Gnash.
//
// Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
//
// This program is free software; you can redistribute it
www.eeworm.com/read/335758/3356397
cpp rectangle_as.cpp
// Rectangle_as.cpp: ActionScript "Rectangle" class, for Gnash.
//
// Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
//
// This program is free software; you can redistribute i
www.eeworm.com/read/335724/3356539
java rectangle.java
package book.oo.shape;
/**
* 长方形
*/
public class Rectangle extends MyShape {
//长方形的长
private double length;
//长方形的宽
private double width;
//边长错误信息
public static final String SIDEER
www.eeworm.com/read/335724/3356607
java rectangle.java
package book.graphic.painter2D;
import java.awt.Color;
import java.awt.Graphics;
// 画矩形
public class Rectangle implements Shape {
// 矩形左上角位置的坐标,x、y值
private int x;
private int y;
//
www.eeworm.com/read/330591/3421374
java rectangle.java
package com.lucaslee.report.model;
import java.awt.Color;
/**
*
* Title: 长方形对象。
*
*
* Description:
*
*
* Copyright: Copyright (c) 2004
*
*
*
www.eeworm.com/read/330144/3427781
java rectangle.java
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying mater
www.eeworm.com/read/329683/3430222
cpp rectangle.cpp
//程序TECTANGLE.CPP(8.6.5) 功能:矩形类RECTANGLE的类实现
#include "figstack.h"
RECTANGLE::RECTANGLE(int x, int y, int len, int wid):FIGURE(x, y)
{
this->length=len;
this->width=wid;
}
void RECTANGLE::sho
www.eeworm.com/read/321953/3529413
c rectangle.c
/* Produce a rectangular wave on output 0 of a parallel port */
#include
#include
#include
#include
#include
#include