Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97273180
e_dpl.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 3, 23:11
Size
685 B
Mime Type
text/x-c
Expires
Sun, Jan 5, 23:11 (2 d)
Engine
blob
Format
Raw Data
Handle
23371181
Attached To
R1448 Lenstool-HPC
e_dpl.c
View Options
#include<fonction.h>
#include<structure.h>
/****************************************************************/
/* nom: e_dpl */
/* auteur: Jean-Paul Kneib */
/* date: 10/02/92 */
/* place: Toulouse */
/****************************************************************/
/* Return the position of the source from the position of an image
*
* Global variables used :
* - in e_grad() : G, lens, lens_table
*/
void e_dpl(const struct point *gi, double dlsds, struct point *gs)
{
struct point Grad;
Grad = e_grad(gi);
gs->x = gi->x - dlsds * Grad.x;
gs->y = gi->y - dlsds * Grad.y;
}
Event Timeline
Log In to Comment