Changeset 2436 for trunk/psLib/src/astro/psCoord.c
- Timestamp:
- Nov 24, 2004, 12:14:39 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psCoord.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.c
r2425 r2436 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1.3 4$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-11-24 19:48:17$12 * @version $Revision: 1.35 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-11-24 22:14:39 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 92 92 out = (psPlane* ) psAlloc(sizeof(psPlane)); 93 93 } 94 out->x = psDPolynomial2DEval(coords->x, coords->y, transform->x); 95 out->y = psDPolynomial2DEval(coords->x, coords->y, transform->y); 94 out->x = psDPolynomial2DEval( 95 transform->x, 96 coords->x, 97 coords->y 98 ); 99 out->y = psDPolynomial2DEval( 100 transform->y, 101 coords->x, 102 coords->y 103 ); 96 104 return (out); 97 105 } … … 136 144 out = (psPlane* ) psAlloc(sizeof(psPlane)); 137 145 } 138 out->x = psDPolynomial4DEval(coords->x, coords->y, color, magnitude, transform->x); 139 out->y = psDPolynomial4DEval(coords->x, coords->y, color, magnitude, transform->y); 146 out->x = psDPolynomial4DEval( 147 transform->x, 148 coords->x, 149 coords->y, 150 color, 151 magnitude 152 ); 153 out->y = psDPolynomial4DEval( 154 transform->y, 155 coords->x, 156 coords->y, 157 color, 158 magnitude 159 ); 140 160 return (out); 141 161 }
Note:
See TracChangeset
for help on using the changeset viewer.
