IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 4, 2005, 11:37:01 AM (21 years ago)
Author:
Paul Price
Message:

Updated to psLib rel5alpha1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/stac/src/stacSize.c

    r2897 r3375  
    11#include <stdio.h>
     2#include <assert.h>
    23#include "pslib.h"
    34#include "stac.h"
     
    910{
    1011    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);
    1513
    1614    psPlane *inCoord = psAlloc(sizeof(psPlane)); // Input coordinates
Note: See TracChangeset for help on using the changeset viewer.