It is currently Mon Aug 24, 2026 5:08 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 43 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Sun Mar 03, 2013 5:50 pm  (#31) 
Offline
GimpChat Member
User avatar

Joined: Apr 07, 2010
Posts: 14182
I had that happen at one time doing that and I don't know how I fixed it. I think I might have deleted it all and started from scratch. I don't know. ccbarr isn't on line very much but I know he could help you fix it but I would just start it over and maybe you might have missed one little step.

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Sun Mar 03, 2013 6:38 pm  (#32) 
Offline
GimpChat Member
User avatar

Joined: Apr 07, 2010
Posts: 14182
no, don't do that, it has to be exactly like ccbarr wrote.

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Sun Mar 03, 2013 6:47 pm  (#33) 
Offline
GimpChat Member
User avatar

Joined: Apr 07, 2010
Posts: 14182
Either delete it and start over or try posting your xcf in the attachment thing below. Maybe someone can figure out what caused the squares

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Mon Mar 04, 2013 12:36 am  (#34) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4826
Location: Bendigo Vic. Australia
You did it but you forgot to combine your background with the other layers
(filters/Animation/Combine background) and then delete your original background layer, and then when saving as gif set all layers 100ms then set disposal to replace for all layers

Just save the image below↓and open the gif in gimp and you will see what I mean

Image

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Sun May 10, 2015 8:12 pm  (#35) 
Offline
GimpChat Member
User avatar

Joined: Mar 16, 2015
Posts: 613
Location: On Earth,specifically Queensland,Australia
molly wrote:
thanks ana.
I am trying to do the tute again but I am having probs with some of it. We think it is mathmap that is causing the trouble so I will try it again one more time.
This is what happened in step #12......
The cylinder formed, but the layers stayed square
[ Image ]
It says in step 12b to payback but that is impossible to play 30 layers of squares. lol


I’ve got the same problem. The problem is step 11. The inbetween layers appear but they haven't been affected by the plugin called. They’re all still square.

I thought it might be because GAP is 2.6 and Gimp is 2.8 but it appears there isn't a 2.8 version.

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Tue May 12, 2015 12:55 am  (#36) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
Kimba wrote:
molly wrote:
thanks ana.
I am trying to do the tute again but I am having probs with some of it. We think it is mathmap that is causing the trouble so I will try it again one more time.
This is what happened in step #12......
The cylinder formed, but the layers stayed square
[ Image ]
It says in step 12b to payback but that is impossible to play 30 layers of squares. lol


I’ve got the same problem. The problem is step 11. The inbetween layers appear but they haven't been affected by the plugin called. They’re all still square.

I thought it might be because GAP is 2.6 and Gimp is 2.8 but it appears there isn't a 2.8 version.

Try disabling Single Window Mode (at the bottom of the Windows menu). GAP sometimes switches the display on you and you may be looking at a different image than the one that was modified.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Tue May 12, 2015 1:59 pm  (#37) 
Offline
GimpChat Member
User avatar

Joined: Mar 16, 2015
Posts: 613
Location: On Earth,specifically Queensland,Australia
I have tried disabling Single Window mode. I even tried importing the layers first. Nothing works. You get first and last but everything inbetween is ignored. I even tried using " Filter all images" the way another tutorial said to but when I did that only the first instance showed, after clicking "continue" nothing happened. :gaah

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Tue May 12, 2015 2:35 pm  (#38) 
Offline
Script Coder
User avatar

Joined: Dec 27, 2014
Posts: 508
I think there is a genuine problem here.

The Map-Object plugin has been updated in Gimp 2.8 with two new toggles in the GUI ("Create new layer" and "Update preview live") which changes the format and size of the last-vals data stored by the plugin, but the GAP iterator for Map-Object has not been updated since Gimp 2.6.6.
In gimp-gap-master/gap/iter_ALT/mod/plug_in_map_object_iter_ALT.inc

    typedef struct
    {
      GimpVector3    viewpoint;
      GimpVector3    firstaxis;
      GimpVector3    secondaxis;
      GimpVector3    normal;
      GimpVector3    position;
      GimpVector3    scale;
      t_LightSettings lightsource;

      t_MaterialSettings material;
      t_MaterialSettings refmaterial;

      t_MapType maptype;

      gint antialiasing;
      gint create_new_image;
      gint transparent_background;
      gint tiled;
      gint showgrid;
      gint showcaps;

      gdouble zoom;

      gdouble alpha,beta,gamma;
      gdouble maxdepth;
      gdouble pixeltreshold;
      gdouble radius;
      gdouble cylinder_radius;
      gdouble cylinder_length;

      gint32 boxmap_id[6];
      gint32 cylindermap_id[2];

    } t_plug_in_map_object_Vals;

-------------------------------------------
But in gimp-2.8.14/plug-ins/map-object/map-object-main.h

typedef struct
{
  GimpVector3   viewpoint,firstaxis,secondaxis,normal,position,scale;
  LightSettings lightsource;

  MaterialSettings material;
  MaterialSettings refmaterial;

  MapType maptype;

  gint antialiasing;
  gint create_new_image;
  gint create_new_layer;         <== THIS IS NEW
  gint transparent_background;
  gint tiled;
  gint livepreview;            <== AND THIS IS NEW
  gint showgrid;
  gint showcaps;

  gdouble zoom;
  gdouble alpha,beta,gamma;
  gdouble maxdepth;
  gdouble pixeltreshold;
  gdouble radius;
  gdouble cylinder_radius;
  gdouble cylinder_length;

  gint32 boxmap_id[6];
  gint32 cylindermap_id[2];

} MapObjectValues;



When you run GAP Frames Modify>Apply filter on layer(s) and select plug-in-map-object, the plug-in runs okay on the first layer but the GAP iterator (which should invoke the plugin for each "tween" frame) then craps out with the following error on the Console:
ERROR: p_plug_in_map_object_iter stored Data missmatch in size 528 != 520
(The mismatch in size is simply the two new toggles introduced, each a 32-bit int.)

The GAP file plug_in_map_object_iter_ALT.inc needs to be brought up to date and GAP re-built for all platforms.

Does anyone know whether Wolfgang Hofer is still maintaining this code (even occasionally)? He hasn't made any updates on git.gnome.org since last July.


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Tue May 12, 2015 4:47 pm  (#39) 
Offline
GimpChat Member
User avatar

Joined: Mar 16, 2015
Posts: 613
Location: On Earth,specifically Queensland,Australia
Thanks jontait2, I thought something like that might be the case when " filters/apply to all layers" cut out after the continue button was pushed as the blur filter in another tutorial using same method worked.

_________________
Image


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Tue May 12, 2015 10:05 pm  (#40) 
Offline
Script Coder
User avatar

Joined: May 07, 2014
Posts: 4527
Location: Canada
oh this one looks fun, i must give it a try gotta go install GAP now
my video frames modify step didn't modify my frames for some reason (I tried it twice and it only modified the first one) so I had to manually create 30 layers and map object each one of them.
Image

_________________
TinT


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Wed May 13, 2015 3:32 am  (#41) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
jontait2 wrote:
Does anyone know whether Wolfgang Hofer is still maintaining this code (even occasionally)? He hasn't made any updates on git.gnome.org since last July.

Wolfgang lives in a region which does not have internet access (or at least it is extremely expensive). In the past he would send updates for GAP about once a year or so. Usually he would come out with a new version of GAP soon after each new GIMP release, but not much changed between GIMP 2.6 and GIMP 2.8 (and ffmpeg finally started providing release versions) so GAP did not need updating (except for this Map Object problem).

I took the liberty of submitting a bug report (and patch). I hope you do not mind.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Wed May 13, 2015 3:40 am  (#42) 
Offline
Script Coder
User avatar

Joined: Dec 27, 2014
Posts: 508
:bigthup That's fine by me, Saul!


Top
 Post subject: Re: GAP - Spinning Striped Pole
PostPosted: Wed May 13, 2015 1:41 pm  (#43) 
Offline
GimpChat Member
User avatar

Joined: Mar 16, 2015
Posts: 613
Location: On Earth,specifically Queensland,Australia
Thanks Saulgoode and Jontait2 for helping to sort this problem.

_________________
Image


Top
Post new topic Reply to topic  [ 43 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group