Opened 4 years ago
Closed 4 years ago
#5357 closed defect (fixed)
add OGR_G_SetPoints to GDAL API-C
Reported by: | ahuarte47 | Owned by: | ahuarte47 |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | OGR_SF | Version: | unspecified |
Severity: | normal | Keywords: | |
Cc: |
Description
add new function to OGR API (ogr_api.h/ogr_api.cpp)
int CPL_DLL OGR_G_SetPoints( OGRGeometryH hGeom, int numPoints,
void* pabyX, int nXStride, void* pabyY, int nYStride, void* pabyZ, int nZStride);
to set the geometry points of a LineString/LinearRing? an unique call.
It will use... OGRLineString::setPoints().
Change History (3)
comment:1 Changed 4 years ago by
Owner: | changed from warmerdam to ahuarte47 |
---|
comment:2 Changed 4 years ago by
Component: | default → OGR_SF |
---|
comment:3 Changed 4 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
This Pull request implements this ticket:
https://github.com/OSGeo/gdal/pull/28