代码搜索:Geometry
找到约 4,837 项符合「Geometry」的源代码
代码结果 4,837
www.eeworm.com/read/328211/3446718
java rect.java
package no.geosoft.cc.geometry;
/**
* A integer based rectangle. The strange name is to avoid name
* clashes with java.awt.Rectangle.
*
* Rect and Box represents the same concept, but their
www.eeworm.com/read/324136/3505233
c tkmenudraw.c
/*
* tkMenuDraw.c --
*
* This module implements the platform-independent drawing and
* geometry calculations of menu widgets.
*
* Copyright (c) 1996-1997 by Sun Microsystems, Inc.
*
* See the
www.eeworm.com/read/318768/3563030
java trypackage.java
import Geometry.*; // Import the Point and Line classes
public class TryPackage
{
public static void main(String[] args)
{
double[][] coords = { {1.0, 0.0}, {6.0, 0.0}, {6.0, 10.0},
www.eeworm.com/read/318768/3563031
java point.java
package Geometry;
public class Point
{
// Create a point from its coordinates
public Point(double xVal, double yVal)
{
x = xVal;
y = yVal;
}
// Create a Point from an exis