jar

com.massisframework : straightedge

Maven & Gradle

Dec 21, 2015
1 usages
10 stars

straightedge · Includes 2 main parts: - Path finding through 2D polygons using the A star algorithm and navigation-mesh generation Field of vision / shadows / line of sight / lighting. The basic polygon and point classes are the KPolygon and KPoint. KPolygon contains a list of KPoints for vertices as well as a center (centroid), area, and radius (circular bound or distance from center to furthest point). KPolygon was born out of the need for a more game-oriented and flexible polygon class than the Path2D class in the standard Java library. KPolygon implements java.awt.geom.Shape so it can be easily drawn and filled by Java2D's Graphics2D object. - This API provides path-finding and field-of-vision. For other complex geometric operations such as buffering (fattening and shrinking) and constructive area geometry (intersections and unions) it is recommended to use the excellent Java Topology Suite (JTS). The standard Java2D library also provides the Area class which can be used for some constructive area geometry operations. Note that there is a utility class PolygonConverter that can quickly convert KPolygons to JTS polygons and vice versa.

Table Of Contents

Latest Version

Download com.massisframework : straightedge JAR file - Latest Versions:

All Versions

Download com.massisframework : straightedge JAR file - All Versions:

Version Vulnerabilities Size Updated
0.8

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window straightedge-0.8.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

straightedge.test.benchmark.event

├─ straightedge.test.benchmark.event.AWTEventCache.class - [JAR]

├─ straightedge.test.benchmark.event.AWTEventHandler.class - [JAR]

├─ straightedge.test.benchmark.event.AWTEventWrapper.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerEvent.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerEventCache.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerKeyEvent.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerMouseEvent.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerMouseWheelEvent.class - [JAR]

├─ straightedge.test.benchmark.event.PlayerStatusEvent.class - [JAR]

straightedge.geom.path

├─ straightedge.geom.path.KNode.class - [JAR]

├─ straightedge.geom.path.KNodeOfObstacle.class - [JAR]

├─ straightedge.geom.path.NodeConnector.class - [JAR]

├─ straightedge.geom.path.ObstAndDist.class - [JAR]

├─ straightedge.geom.path.ObstDistAndQuad.class - [JAR]

├─ straightedge.geom.path.ObstacleManager.class - [JAR]

├─ straightedge.geom.path.PathBlockingObstacle.class - [JAR]

├─ straightedge.geom.path.PathBlockingObstacleImpl.class - [JAR]

├─ straightedge.geom.path.PathData.class - [JAR]

├─ straightedge.geom.path.PathFinder.class - [JAR]

straightedge.geom

├─ straightedge.geom.AABB.class - [JAR]

├─ straightedge.geom.KMultiPolygon.class - [JAR]

├─ straightedge.geom.KPoint.class - [JAR]

├─ straightedge.geom.KPolygon.class - [JAR]

├─ straightedge.geom.PolygonBufferer.class - [JAR]

├─ straightedge.geom.PolygonConverter.class - [JAR]

├─ straightedge.geom.PolygonHolder.class - [JAR]

straightedge.geom.vision

├─ straightedge.geom.vision.CollinearOverlap.class - [JAR]

├─ straightedge.geom.vision.CollinearOverlapChecker.class - [JAR]

├─ straightedge.geom.vision.Occluder.class - [JAR]

├─ straightedge.geom.vision.OccluderDistAndQuad.class - [JAR]

├─ straightedge.geom.vision.OccluderImpl.class - [JAR]

├─ straightedge.geom.vision.PointShuffler.class - [JAR]

├─ straightedge.geom.vision.VPBoundary.class - [JAR]

├─ straightedge.geom.vision.VPOccluder.class - [JAR]

├─ straightedge.geom.vision.VPOccluderBoundaryIntersection.class - [JAR]

├─ straightedge.geom.vision.VPOccluderOccluderIntersection.class - [JAR]

├─ straightedge.geom.vision.VPShadowOnBoundary.class - [JAR]

├─ straightedge.geom.vision.VPShadowOnOccluder.class - [JAR]

├─ straightedge.geom.vision.VisiblePoint.class - [JAR]

├─ straightedge.geom.vision.VisionData.class - [JAR]

├─ straightedge.geom.vision.VisionDataRotation.class - [JAR]

├─ straightedge.geom.vision.VisionFinder.class - [JAR]

straightedge.test

├─ straightedge.test.MovingObstacleTest.class - [JAR]

├─ straightedge.test.PathTest.class - [JAR]

├─ straightedge.test.PathTestActiveRendering.class - [JAR]

├─ straightedge.test.VisionTest.class - [JAR]

├─ straightedge.test.VisionTestActiveRendering.class - [JAR]

straightedge.test.experimental.map

├─ straightedge.test.experimental.map.Cell.class - [JAR]

├─ straightedge.test.experimental.map.CellArray.class - [JAR]

├─ straightedge.test.experimental.map.FogOfWarTestGrid.class - [JAR]

├─ straightedge.test.experimental.map.Link.class - [JAR]

├─ straightedge.test.experimental.map.Point.class - [JAR]

straightedge.geom.util

├─ straightedge.geom.util.Bag.class - [JAR]

├─ straightedge.geom.util.BinaryHeap.class - [JAR]

├─ straightedge.geom.util.CodeTimer.class - [JAR]

├─ straightedge.geom.util.ConvexHull.class - [JAR]

├─ straightedge.geom.util.TileArray.class - [JAR]

├─ straightedge.geom.util.TileArrayIntersections.class - [JAR]

├─ straightedge.geom.util.TileBag.class - [JAR]

├─ straightedge.geom.util.TileBagIntersections.class - [JAR]

├─ straightedge.geom.util.Tracker.class - [JAR]

straightedge.test.demo

├─ straightedge.test.demo.AWTEventCache.class - [JAR]

├─ straightedge.test.demo.AWTEventWrapper.class - [JAR]

├─ straightedge.test.demo.AcceleratedImage.class - [JAR]

├─ straightedge.test.demo.AppletImpl.class - [JAR]

├─ straightedge.test.demo.Bullet.class - [JAR]

├─ straightedge.test.demo.EventHandler.class - [JAR]

├─ straightedge.test.demo.FPSCounter.class - [JAR]

├─ straightedge.test.demo.Gun.class - [JAR]

├─ straightedge.test.demo.LoadingLoopAnimation.class - [JAR]

├─ straightedge.test.demo.Loop.class - [JAR]

├─ straightedge.test.demo.LoopAnimation.class - [JAR]

├─ straightedge.test.demo.Main.class - [JAR]

├─ straightedge.test.demo.MainApplet.class - [JAR]

├─ straightedge.test.demo.MainFrame.class - [JAR]

├─ straightedge.test.demo.Player.class - [JAR]

├─ straightedge.test.demo.PlayersCurrentDirection.class - [JAR]

├─ straightedge.test.demo.TargetFinder.class - [JAR]

├─ straightedge.test.demo.TargetUser.class - [JAR]

├─ straightedge.test.demo.View.class - [JAR]

├─ straightedge.test.demo.ViewPane.class - [JAR]

├─ straightedge.test.demo.World.class - [JAR]

├─ straightedge.test.demo.WorldEnclosedKochCurve.class - [JAR]

├─ straightedge.test.demo.WorldHexagonalGosperCurve.class - [JAR]

├─ straightedge.test.demo.WorldKochIsland.class - [JAR]

├─ straightedge.test.demo.WorldKochSnowflake.class - [JAR]

├─ straightedge.test.demo.WorldLetters.class - [JAR]

├─ straightedge.test.demo.WorldLoopAnimation.class - [JAR]

├─ straightedge.test.demo.WorldMaze.class - [JAR]

├─ straightedge.test.demo.WorldQuadraticGosperCurve.class - [JAR]

├─ straightedge.test.demo.WorldShapes.class - [JAR]

├─ straightedge.test.demo.WorldSierpinskiGasket.class - [JAR]

├─ straightedge.test.demo.WorldSpiral.class - [JAR]

├─ straightedge.test.demo.WorldStarField.class - [JAR]

├─ straightedge.test.demo.WorldStoneHenge.class - [JAR]

├─ straightedge.test.demo.WorldVogelSpiral.class - [JAR]

straightedge.test.experimental

├─ straightedge.test.experimental.Drawer.class - [JAR]

├─ straightedge.test.experimental.FogOfWarTest.class - [JAR]

├─ straightedge.test.experimental.FogOfWarTest2.class - [JAR]

├─ straightedge.test.experimental.FogOfWarTestGrid2.class - [JAR]

├─ straightedge.test.experimental.LineTest.class - [JAR]

straightedge.test.benchmark

├─ straightedge.test.benchmark.BlankWorld.class - [JAR]

├─ straightedge.test.benchmark.CornerCaseWorld.class - [JAR]

├─ straightedge.test.benchmark.CustomProgressPane.class - [JAR]

├─ straightedge.test.benchmark.FPSCounter.class - [JAR]

├─ straightedge.test.benchmark.GameFrame.class - [JAR]

├─ straightedge.test.benchmark.GameLoop.class - [JAR]

├─ straightedge.test.benchmark.GameWorld.class - [JAR]

├─ straightedge.test.benchmark.MazeWorld.class - [JAR]

├─ straightedge.test.benchmark.Monster.class - [JAR]

├─ straightedge.test.benchmark.ObstacleWorld.class - [JAR]

├─ straightedge.test.benchmark.PillarWorld.class - [JAR]

├─ straightedge.test.benchmark.Player.class - [JAR]

├─ straightedge.test.benchmark.ViewPane.class - [JAR]

Advertisement