Example #1
0
/*public*/
LinearRing::LinearRing(CoordinateSequence::AutoPtr newCoords,
		const GeometryFactory *newFactory)
	:
	Geometry(newFactory),
	LineString(newCoords, newFactory)
{
	validateConstruction();	
}
Example #2
0
/*public*/
LineString::LineString(CoordinateSequence::AutoPtr newCoords,
		const GeometryFactory *factory)
	:
	Geometry(factory),
	points(newCoords)
{
	validateConstruction();
}