代码搜索:shape

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

代码结果 10,000
www.eeworm.com/read/298430/3866092

java shape.java

/* * Shape.java * * Created on 2007年10月3日, 上午1:39 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package ch08.shape; /** *
www.eeworm.com/read/296973/3895803

java shape.java

package ch10.section07; public interface Shape { public void Draw(); public void Border(); }
www.eeworm.com/read/286845/4032157

pkg shape.pkg

$#include "stdafx.h" $#include $#include $#include "shape.h" #define FALSE 0 #define TRUE 1 class Shape { Shape(); void draw (void); void draw (dou
www.eeworm.com/read/286845/4032158

cpp shape.cpp

/* ** Lua binding: shape ** Generated automatically by tolua 5.0a on 04/11/05 23:06:27. */ #ifndef __cplusplus #include "stdlib.h" #endif #include /* Exported function */ TO
www.eeworm.com/read/286845/4032161

h shape.h

#ifndef SHAPE_H #define SHAPE_H #define FALSE 0 #define TRUE 1 #include class Shape { public: Shape() {printf ("Shape constructor called ");}; void draw (void) {printf ("dra
www.eeworm.com/read/286845/4032162

lua shape.lua

myLine = Line:new (0,0,1,1) if myLine:isSelected() == TRUE then myLine:draw(1.0,0.0,0.0) else myLine:draw() end myLine:delete() myShape = Shape:new() myShape:draw()
www.eeworm.com/read/285741/4045565

cpp shape.cpp

// Shape.cpp: implementation of the shape classes. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include #include "Shape.h" #define
www.eeworm.com/read/285741/4045572

h shape.h

// Shape.h: interface for the CShape class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_SHAPE_H__35A41A4E_36EA_11D4_85B6_3ED14D000000__INCLUDED_) #
www.eeworm.com/read/285741/4045711

cpp shape.cpp

#include class Shape { public: void Draw(); void Show(); }; class Circle : public Shape { public: void Draw(); }; class Square : public Shape { public:
www.eeworm.com/read/283473/4078761

java shape.java

/** * A interface */ public interface Shape { public void Draw(); public void Border(); }