代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/482538/1288005
hh rectangle.hh
#ifndef CLICKY_RECTANGLE_HH
#define CLICKY_RECTANGLE_HH 1
#include
#include
struct point {
double _x;
double _y;
point() {
}
point(double x, double y)
: _x
www.eeworm.com/read/476965/1365118
h rectangle.h
#ifndef __RECTANGLE_H__
#define __RECTANGLE_H__
#include
/**
*
* @class CRectangle Rectangle.h
* @brief This is a class to define a rectangle and is an implementat
www.eeworm.com/read/476965/1365125
cpp rectangle.cpp
/**
*
* @brief Definition of CRectangle
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// Class Includes
#include "rectangle.h"
// System Includes
#include
cons
www.eeworm.com/read/476965/1365410
h rectangle.h
#ifndef __RECTANGLE_H__
#define __RECTANGLE_H__
//INCLUDES
//System Includes
#include
#include
//User Includes
#include "shape.h"
namespace NShapes
{
/**
www.eeworm.com/read/476965/1365422
cpp rectangle.cpp
/**
*
* @brief Definition of TRectangle
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class includes
#include "rectangle.h"
using namespace N
www.eeworm.com/read/476454/1370983
cls rectangle.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
www.eeworm.com/read/475888/1379856
java rectangle.java
/*
* @(#)Rectangle.java 1.49 06/10/10
*
* Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* This program is fre
www.eeworm.com/read/474056/1396096
js rectangle.js
Rectangle = Class.create();
Rectangle.prototype = {
initialize: function(minX, maxX, minY, maxY){
this.minX = minX;
this.maxX = maxX;
this.minY = minY;
this.
www.eeworm.com/read/472524/1409899
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/472524/1409909
java rectangle.java
/*
* This example requires no changes from the 1.0 version. You can
* find the 1.0 version in ../example/Rectangle.java.
*/