代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/359499/10142570
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) {
www.eeworm.com/read/359499/10142929
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/359335/10155800
cs rectangle.cs
using System;
class Rectangle
{
private int iHeight;
private int iWidth;
// 缺省构造函数
public Rectangle()
{
Height=0;
Width=0;
}
// 构造函数重载
public Rectangle(int w
www.eeworm.com/read/359335/10155803
exe rectangle.exe
www.eeworm.com/read/357734/10202163
cpp rectangle.cpp
// Rectangle.cpp: implementation of the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Rectangle.h"
/////////////////
www.eeworm.com/read/357734/10202174
h rectangle.h
// Rectangle.h: interface for the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RECTANGLE_H__9E87233D_ED13_4D3B_9CF7_E33330E014DF__IN
www.eeworm.com/read/355030/10299651
cpp rectangle.cpp
//: C09:Rectangle.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Accessors & mutators
class
www.eeworm.com/read/162228/10324815
class rectangle.class
www.eeworm.com/read/162228/10324842
java rectangle.java
package LYD.Draw;
import java.awt.Graphics;
import java.awt.Cursor;
import java.awt.event.MouseEvent;
import java.awt.Color;
public class Rectangle implements ITypeDrawCommand
{
int x1=0;
www.eeworm.com/read/160841/10487441