代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/163264/10168170
h shape.h
// GraphCell.h: interface for the CGraphCell class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SHAPE_H__F72DEE7A_FC88_11D2_B2E0_961FD60BAA53__INCLUDED_
www.eeworm.com/read/357852/10200075
txt shape.txt
This program uses hierarchies for Shapes
RECTANGLE Height = 4.1 Width = 5.2 area = 21.32
CIRCLE Radius = 6.1 area = 116.899
SQUARE Height = 5.1 area = 26.01
www.eeworm.com/read/357734/10202165
cpp shape.cpp
// Shape.cpp: implementation of the Shape class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Shape.h"
/////////////////////////////
www.eeworm.com/read/357734/10202172
h shape.h
// Shape.h: interface for the Shape class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SHAPE_H__3D9F2790_E309_44B3_A908_0E56D905ACE6__INCLUDED_)
#d
www.eeworm.com/read/357357/10211638
class shape.class
www.eeworm.com/read/357357/10211820
java shape.java
public abstract class Shape
{
public double perimeter(){return 0.0;}
public abstract String getType();
}
www.eeworm.com/read/357107/10216038
m shape.m
function shaped_vals = shape(rec_symbol, Mr, U, N);
% shaped_vals = shape(rec_symbol, Mr, U, N);
%
% This function shapes the received symbols prior to demodulation. This completes the
% decompositio
www.eeworm.com/read/162863/10262713
m shape.m
function shaped_vals = shape(rec_symbol, Mr, U, N);
% shaped_vals = shape(rec_symbol, Mr, U, N);
%
% This function shapes the received symbols prior to demodulation. This completes the
% decompositio
www.eeworm.com/read/162735/10278527
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}