代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/316412/13523425
m goldrect.m
%GOLDRECT Golden Rectangle
% GOLDRECT plots the golden rectangle
phi = (1+sqrt(5))/2;
x = [0 phi phi 0 0];
y = [0 0 1 1 0];
u = [1 1];
v = [0 1];
plot(x,y,'b',u,v,'b--')
text(phi/2,1.05,'\phi')
tex
www.eeworm.com/read/314860/13557384
java packagedemo.java
//PackageDemo.java
package mypackage;
import shape.*;
public class PackageDemo{
public static void main(String []args){
rectangle rect=new rectangle(50,100,20,10);
circle cir=new circle(
www.eeworm.com/read/314812/13558554
cs square.cs
// Square.cs - Elements of a game square.
//
// Code from _Programming the .NET Compact Framework with C#_
// and _Programming the .NET Compact Framework with VB_
// (c) Copyright 2002-2004 Paul Y
www.eeworm.com/read/303325/13818182
htm barcodeactualaddonrectangle.htm
ActualAddOnRectangle Property
www.eeworm.com/read/130122/5964089
java iconrowanimator.java
package com.croftsoft.core.animation.animator;
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;
import com.croftsoft.core.anima
www.eeworm.com/read/128604/5980813
cc natxconfigureevent.cc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LIC
www.eeworm.com/read/128604/5980833
cc natxexposeevent.cc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LIC
www.eeworm.com/read/116971/6112121
java shapetest.java
// Test program for class hierarchy on page 101
public class ShapeTest {
public static void main(String args[]) {
Shape rectangle = new Rectangle(2.0, 3.0);
Shape circle = n