Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96639884
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
Sun, Dec 29, 09:08
Size
685 B
Mime Type
text/x-c
Expires
Tue, Dec 31, 09:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23220768
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