代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/191923/5161035
cpp rectangle.cpp
// This file is in the public domain.
// There are no restrictions on any sort of usage of this file.
#include
#include
using namespace Sys
www.eeworm.com/read/191923/5161168
cpp rectangle.cpp
// This software is in the public domain.
// There are no restrictions on any sort of usage of this software.
#include "../../lib/gui/System/Drawing/Rectangle.cpp"
www.eeworm.com/read/190666/5181162
java rectangle.java
/* Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the
www.eeworm.com/read/186446/5231798
java rectangle.java
package graphics.twoD;
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// 定义了四个构造方法。
/* public Rectangle() {
origin = new Poi
www.eeworm.com/read/185070/5241847
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/185070/5241864
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/185070/5241885
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/185070/5241903
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/185070/5242217
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/185070/5242394
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,