代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/184769/9079668
png rectangle-rounding-error-ps-argb32-ref.png
www.eeworm.com/read/457742/7318208
m l1l1_resection_initial_rectangle.m
www.eeworm.com/read/457742/7318215
m l1l1_triangle_initial_rectangle.m
www.eeworm.com/read/284676/8910196
cpp xt12-4.cpp
#include
using namespace std;
//定义抽象基类Shape
class Shape
{public:
virtual double area() const =0; //纯虚函数
};
//定义Circle类
class Circle:public Shape
{public:
Circle(doub
www.eeworm.com/read/427511/8938656
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,'\p
www.eeworm.com/read/283953/8976800
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/185150/9055281
cpp 7_2.cpp
//7_2.cpp
#include
#include
#include "rectangle.h"
using namespace std;
void main()
{
Rectangle rect; //声明Rectangle类的对象
rect.InitR(2,3,20,10); //设置矩形的数据
rect.Move(3,2); //
www.eeworm.com/read/185150/9055285
cpp 7_1.cpp
//7_1.cpp
#include
#include
#include "rectangle.h"
using namespace std;
void main()
{
Rectangle rect; //声明Rectangle类的对象
rect.InitR(2,3,20,10); //设置矩形的数据
rect.Move(3,2); //