C# Class SharpMap.Geometries.LinearRing

A LinearRing is a LineString that is both closed and simple.
Inheritance: LineString
Afficher le fichier Open project: jumpinjackie/fdotoolbox Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : LinearRing

Return a copy of this geometry

IsCCW ( ) : bool

Tests whether a ring is oriented counter-clockwise.

IsPointWithin ( System.Point p ) : bool

Returns true of the Point 'p' is within the instance of this ring

LinearRing ( ) : System

Initializes an instance of a LinearRing

LinearRing ( List vertices ) : System

Initializes an instance of a LinearRing from a set of vertices

Method Details

Clone() public méthode

Return a copy of this geometry
public Clone ( ) : LinearRing
Résultat LinearRing

IsCCW() public méthode

Tests whether a ring is oriented counter-clockwise.
public IsCCW ( ) : bool
Résultat bool

IsPointWithin() public méthode

Returns true of the Point 'p' is within the instance of this ring
public IsPointWithin ( System.Point p ) : bool
p System.Point
Résultat bool

LinearRing() public méthode

Initializes an instance of a LinearRing
public LinearRing ( ) : System
Résultat System

LinearRing() public méthode

Initializes an instance of a LinearRing from a set of vertices
public LinearRing ( List vertices ) : System
vertices List
Résultat System