File: plug_in_refract_iter_ALT.inc

package info (click to toggle)
gimp-gap 2.6.0%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 19,656 kB
  • ctags: 7,358
  • sloc: ansic: 119,801; sh: 3,890; makefile: 932; lisp: 97; pascal: 55
file content (50 lines) | stat: -rw-r--r-- 2,186 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* ----------------------------------------------------------------------
 * p_plug_in_refract_iter_ALT 
 * ----------------------------------------------------------------------
 */
gint p_plug_in_refract_iter_ALT(GimpRunMode run_mode, gint32 total_steps, gdouble current_step, gint32 len_struct) 
{
    typedef struct t_plug_in_refract_Vals 
    {
      gint32    lens_id;
      gint32    refl_id;
      long      thick;
      long      refr_dist;
      long      refl_dist;
      gdouble   na;
      gdouble   nb;
      long      edge;
      long      newl;
      long      xofs;
      long      yofs;
    } t_plug_in_refract_Vals; 

    t_plug_in_refract_Vals  buf, buf_from, buf_to; 

    if(len_struct != sizeof(t_plug_in_refract_Vals)) 
    {
      fprintf(stderr, "ERROR: p_plug_in_refract_iter  stored Data missmatch in size %d != %d\n",   
                       (int)len_struct, sizeof(t_plug_in_refract_Vals) ); 
      return -1;  /* ERROR */ 
    }

    gimp_get_data("plug-in-refract-ITER-FROM", &buf_from); 
    gimp_get_data("plug-in-refract-ITER-TO",   &buf_to); 
    memcpy(&buf, &buf_from, sizeof(buf));

    p_delta_drawable(&buf.lens_id, buf_from.lens_id, buf_to.lens_id, total_steps, current_step);
    p_delta_drawable(&buf.refl_id, buf_from.refl_id, buf_to.refl_id, total_steps, current_step);
    p_delta_long(&buf.thick, buf_from.thick, buf_to.thick, total_steps, current_step);
    p_delta_long(&buf.refr_dist, buf_from.refr_dist, buf_to.refr_dist, total_steps, current_step);
    p_delta_long(&buf.refl_dist, buf_from.refl_dist, buf_to.refl_dist, total_steps, current_step);
    p_delta_gdouble(&buf.na, buf_from.na, buf_to.na, total_steps, current_step);
    p_delta_gdouble(&buf.nb, buf_from.nb, buf_to.nb, total_steps, current_step);
    p_delta_long(&buf.edge, buf_from.edge, buf_to.edge, total_steps, current_step);
    p_delta_long(&buf.newl, buf_from.newl, buf_to.newl, total_steps, current_step);
    p_delta_long(&buf.xofs, buf_from.xofs, buf_to.xofs, total_steps, current_step);
    p_delta_long(&buf.yofs, buf_from.yofs, buf_to.yofs, total_steps, current_step);

    gimp_set_data("plug-in-refract", &buf, sizeof(buf)); 

    return 0; /* OK */
}