代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/463822/7174959
cs board.cs
using System;
public enum GameState
{
InProgress,
ComputerWins,
HumanWins,
Draw
}
class Move
{
public int iCol;
public int iRow;
public int iRank;
p
www.eeworm.com/read/198970/7900186
m randkernel.m
function samples = randKernel(N,M,type)
%
% samples = randKernel(N,M,type) -- Draw samples from a kernel of the
% given type, with bandwidth 1; for bw!=1,
%
www.eeworm.com/read/144074/12819504
h geometry.h
#ifndef GEOMETRIC_FIGURES
#define GEOMETRIC_FIGURES
// include the system dependent graphics library that
// initializes drawing to a screen and provides the routines
// to draw a rectangle, cir
www.eeworm.com/read/143472/12872952
c mcdraw.c
/*
* MICROCAD Drawing utility
*
* This is a "boiled down" set of routines to draw a MICROCAD drawing file.
* The main purpose of this program is to provide a starting point, should
* you wis
www.eeworm.com/read/240686/13205025
h geometry.h
#ifndef GEOMETRIC_FIGURES
#define GEOMETRIC_FIGURES
// include the system dependent graphics library that
// initializes drawing to a screen and provides the routines
// to draw a rectangle, cir
www.eeworm.com/read/320515/13425059
java trianglenode.java
package package1;
public class TriangleNode implements Node{
public void draw() {
// TODO Auto-generated method stub
new Triangle().DrawTriangle();
}
}
www.eeworm.com/read/320515/13425060
java rectanglenode.java
package package1;
public class RectangleNode implements Node{
public void draw() {
// TODO Auto-generated method stub
new Rectangle().DrawRectangle();
}
}
www.eeworm.com/read/320515/13425066
java circlenode.java
package package1;
public class CircleNode implements Node{
public void draw() {
// TODO Auto-generated method stub
new Circle().DrawCircle();
}
}
www.eeworm.com/read/313054/13597652
java exswitch.java
//
// CLASS
// ExSwitch - illustrate use of switches
//
// LESSON
// Add a Switch grouping node to select which of several shapes
// to draw.
//
// AUTHOR
// David R. Nadeau /
www.eeworm.com/read/309215/13678820
c mcdraw.c
/*
* MICROCAD Drawing utility
*
* This is a "boiled down" set of routines to draw a MICROCAD drawing file.
* The main purpose of this program is to provide a starting point, should
* you wis