Uses of Class
micycle.pgs.commons.PEdge
Packages that use PEdge
Package
Description
Processing Geometry Suite is a software project that provides easy access to
geometric algorithms in the form of a Processing library.
The commons package contains all non-core PGS classes (of varying authorship
and either not worth putting in separate package or too long to include
within the calling PGS method itself).
-
Uses of PEdge in micycle.pgs
Methods in micycle.pgs that return types with arguments of type PEdgeModifier and TypeMethodDescriptionPGS_SegmentSet.filterAxisAligned
(List<PEdge> segments, double angleDelta) Removes axis-aligned (horizontal and vertical) segments (within a given angle tolerance) from a collection of segments.PGS_SegmentSet.filterByAverageLength
(List<PEdge> segments, double fraction) Removes segments having a length either less than some fraction or more than1/fraction
of the mean segment length from a collection of segments.PGS_SegmentSet.filterByMinLength
(List<PEdge> segments, double minLength) Removes segments having a length less than the given length from a collection of segmensts.PGS_SegmentSet.fromPShape
(processing.core.PShape shape) Extracts a list of unique PEdge segments representing the given shape.PGS_SegmentSet.getPolygonInteriorSegments
(List<PEdge> segments, processing.core.PShape shape) Retains line segments from a set of line segments that are wholly contained within a given shape.PGS_SegmentSet.graphMatchedSegments
(double width, double height, int n, long seed) Generates N non-intersecting segments via a Perfect matching algorithm applied to a triangulation populated with random points.PGS_SegmentSet.graphMatchedSegments
(List<processing.core.PVector> points) Generates non-intersecting segments via a Perfect matching algorithm applied to a triangulation populated with the given points.PGS_SegmentSet.graphMatchedSegments
(org.tinfour.common.IIncrementalTin triangulation) Generates non-intersecting segments via a Perfect matching algorithm applied to the given triangulation.PGS_SegmentSet.nodedSegments
(double width, double height, int n, long seed) Generates N non-intersecting segments via intersection and noding.PGS_SegmentSet.parallelSegments
(double centerX, double centerY, double length, double spacing, double angle, int n) Generates a set of N straight parallel segments, centered on a given point.PGS_SegmentSet.stochasticSegments
(double width, double height, int n) Generates a set of N random non-intersecting line segments via brute-forcing.PGS_SegmentSet.stochasticSegments
(double width, double height, int n, double length) Generates a set of N random non-intersecting line segments of the given length via brute-forcing.PGS_SegmentSet.stochasticSegments
(double width, double height, int n, double minLength, double maxLength, long seed) Generates a set of N random non-intersecting line segments via brute-forcing.Stretches each PEdge segment in the provided list by a specified factor.static org.jgrapht.graph.SimpleGraph<processing.core.PVector,
PEdge> PGS_Conversion.toCentroidDualGraph
(processing.core.PShape mesh) Converts a mesh-like PShape into its centroid-based undirected dual-graph.static org.jgrapht.graph.SimpleGraph<processing.core.PVector,
PEdge> PGS_Conversion.toGraph
(processing.core.PShape shape) Transforms a given PShape into a simple graph representation.static org.jgrapht.graph.SimpleGraph<processing.core.PVector,
PEdge> PGS_Triangulation.toGraph
(org.tinfour.common.IIncrementalTin triangulation) Finds the graph equivalent to a triangulation.Method parameters in micycle.pgs with type arguments of type PEdgeModifier and TypeMethodDescriptionstatic processing.core.PShape
PGS_SegmentSet.dissolve
(Collection<PEdge> segments) Dissolves the edges from a collection ofPEdges
into a set of maximal-length LineStrings in which each unique segment appears only once.PGS_SegmentSet.filterAxisAligned
(List<PEdge> segments, double angleDelta) Removes axis-aligned (horizontal and vertical) segments (within a given angle tolerance) from a collection of segments.PGS_SegmentSet.filterByAverageLength
(List<PEdge> segments, double fraction) Removes segments having a length either less than some fraction or more than1/fraction
of the mean segment length from a collection of segments.PGS_SegmentSet.filterByMinLength
(List<PEdge> segments, double minLength) Removes segments having a length less than the given length from a collection of segmensts.static processing.core.PShape
Converts a given SimpleGraph consisting of PVectors and PEdges into a PShape by polygonizing its edges.PGS_SegmentSet.getPolygonInteriorSegments
(List<PEdge> segments, processing.core.PShape shape) Retains line segments from a set of line segments that are wholly contained within a given shape.Stretches each PEdge segment in the provided list by a specified factor.static processing.core.PShape
PGS_SegmentSet.toPShape
(Collection<PEdge> segments) Converts a collection ofPEdges
into aLINES
shape.static processing.core.PShape
PGS_SegmentSet.toPShape
(Collection<PEdge> segments, Integer strokeColor, Integer strokeCap, Integer strokeWeight) Converts a collection ofPEdges
into aLINES
shape, having the (optional) styling provided. -
Uses of PEdge in micycle.pgs.commons
Methods in micycle.pgs.commons that return PEdgeModifier and TypeMethodDescriptionPEdge.copy()
PEdge.round()
Rounds (mutates) the vertex coordinates of this PEdge to their closest ints.PEdge.slice
(double from, double to) Calculates the subsection of this PEdge as a new PEdge.Methods in micycle.pgs.commons that return types with arguments of type PEdgeModifier and TypeMethodDescriptionPenroseTiling.getEdges()
Returns the edge work of the tiling.SpiralQuadrangulation.getQuadrangulationEdges()
Method parameters in micycle.pgs.commons with type arguments of type PEdgeModifier and TypeMethodDescriptionstatic processing.core.PShape
FastPolygonizer.polygonize
(Collection<PEdge> edges) Polygonizes a set of edges which represent linework that forms some polygonal arrangement (a planar graph).