Home
last modified time | relevance | path

Searched refs:MS_ABS (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/mapserver/mapserver-7.6.4/
H A Dmapmvt.c72 return (MS_ABS(s/b)); in getTriangleHeight()
377 int buffer = MS_ABS(atoi(mvt_buffer)); in msMVTWriteTile()
444 mvt_layer->extent = MS_ABS(atoi(mvt_extent)); in msMVTWriteTile()
H A Dmapprimitive.c1167 …angle = asin(MS_ABS(p->line[i].point[1].x - p->line[i].point[0].x)/sqrt((((p->line[i].point[1].x -… in bufferPolyline()
1189 …angle = asin(MS_ABS(p->line[i].point[j].x - p->line[i].point[j-1].x)/sqrt((((p->line[i].point[j].x… in bufferPolyline()
1232 return (MS_ABS(s/2)); in getRingArea()
1270 area = MS_ABS(s/2); in getPolygonCenterOfGravity()
1392 …if(MS_ABS((int)lp->x - (int)cp.x) > MS_ABS((int)lp->y - (int)cp.y)) { /* center horizontally, fix … in msPolygonLabelPoint()
H A Dmapservutil.c1068 mapserv->fZoom = 1.0/MS_ABS(mapserv->fZoom); in msCGILoadForm()
1075 mapserv->fZoom = 1.0/MS_ABS(mapserv->Zoom); in msCGILoadForm()
H A Dmapdraw.c1684 r = MS_ABS(center.x - shape->line[0].point[0].x); in circleLayerDrawShape()
1686 r = MS_ABS(center.y - shape->line[0].point[0].y); in circleLayerDrawShape()
3030 map->labelcache.gutter = MS_ABS(atoi(value)); in msDrawLabelCache()
H A Dmapwms.c1585 dx = MS_ABS(map->extent.maxx - map->extent.minx); in msWMSLoadGetMapParams()
1586 dy = MS_ABS(map->extent.maxy - map->extent.miny); in msWMSLoadGetMapParams()
1592 if ( MS_ABS((reqy - (double)map->height)) > 1.0 ) { in msWMSLoadGetMapParams()
H A Dmapserver.h314 #define MS_ABS(a) (((a)<0) ? -(a) : (a)) macro