Changeset 3375 for trunk/stac/src/stacSize.c
- Timestamp:
- Mar 4, 2005, 11:37:01 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/stac/src/stacSize.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/stac/src/stacSize.c
r2897 r3375 1 1 #include <stdio.h> 2 #include <assert.h> 2 3 #include "pslib.h" 3 4 #include "stac.h" … … 9 10 { 10 11 int nImages = images->n; // Number of input images 11 if (nImages != maps->n) { 12 psError("stac.size", "Number of images (%d) and maps (%d) do not match.\n", nImages, maps->n); 13 return false; 14 } 12 assert(maps->n == nImages); 15 13 16 14 psPlane *inCoord = psAlloc(sizeof(psPlane)); // Input coordinates
Note:
See TracChangeset
for help on using the changeset viewer.
