Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Line.java
Package: CH09.zip [view]
Upload User: shjixinjx
Upload Date: 2020-12-29
Package Size: 985k
Code Size: 0k
Category:
Games
Development Platform:
Java
- package kyodai.map;
- import java.awt.Point;
- /**
- * 定义直线的类
- */
- public class Line{
- public Point a;
- public Point b;
- public int direct;
- public Line(){
- }
- /**
- * 通过两点和方向构造直线
- */
- public Line(int direct, Point a, Point b){
- this.direct = direct;
- this.a = a;
- this.b = b;
- }
- }