代码搜索:shape

找到约 10,000 项符合「shape」的源代码

代码结果 10,000
www.eeworm.com/read/389693/2540006

java shape.java

package book.graphic.painter2D; import java.awt.Graphics; /** * 自定义图形的接口 */ public interface Shape { // 画图,每个自定义图形都必须实现该接口。 public void draw(Graphics g); }
www.eeworm.com/read/384467/2600421

java shape.java

// Shape.java // 定义形状接口 public interface Shape { public abstract double area(); public abstract double volume(); public abstract String getName(); }
www.eeworm.com/read/383153/2621362

cpp shape.cpp

// *************************************************************************** // // Generated automatically by genwrapper. // Please DO NOT EDIT this file! // // *********************************
www.eeworm.com/read/383153/2621813

cpp shape.cpp

/********************************************************************** * * FILE: HeightField.cpp * * DESCRIPTION: Read/Write osg::HeightField in binary format to disk. * *
www.eeworm.com/read/383153/2621970

h shape.h

#ifndef IVE_HIEGHTFIELD #define IVE_HIEGHTFIELD 1 #include #include "ReadWrite.h" namespace ive{ class Sphere : public osg::Sphere, public ReadWrite { public: void write(DataOutputStre
www.eeworm.com/read/383153/2622234

cpp shape.cpp

#include #include #include #include #include #include using namespace osg; using namespace osgDB; ///
www.eeworm.com/read/382791/2625743

cpp shape.cpp

// Shape.cpp: implementation of the CShape class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "log.h" #include "Shape.h" #ifdef _DE
www.eeworm.com/read/382791/2625759

h shape.h

// Shape.h: interface for the CShape class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_SHAPE_H__ACB8080F_49C1_4E0C_8A39_6025642A73AF__INCLUDED_) #
www.eeworm.com/read/381485/2644798

java shape.java

/* * Copyright (C) 2007 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy
www.eeworm.com/read/378111/2691631

java shape.java

// Shape.java // 定义形状接口 public interface Shape { public abstract double area(); public abstract double volume(); public abstract String getName(); }