| 353 | /************************************************************************/ |
| 354 | |
| 355 | int msMapSetRotation( mapObj *map, double rotation_angle ) |
| 356 | |
| 357 | { |
| 358 | map->gt.rotation_angle = rotation_angle; |
| 359 | if( map->gt.rotation_angle != 0.0 ) |
| 360 | map->gt.need_geotransform = MS_TRUE; |
| 361 | else |
| 362 | map->gt.need_geotransform = MS_FALSE; |
| 363 | |
| 364 | return msMapComputeGeotransform( map ); |
| 365 | } |
| 366 | |
| 367 | /************************************************************************/ |
| 368 | /* msMapSetSize() */ |
no test coverage detected