X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fsp-fespotlight.h;h=d48cf6daa73ba5f22385135e7a12f9d6cc0c7408;hb=0f51f94e09af3ab07d55c057a09b44f0790599b9;hp=d0b04250f20b3532fa131f96b0a836c7e99d9b62;hpb=af0732a2bf24fbea12a085b855224577e7101851;p=inkscape.git diff --git a/src/sp-fespotlight.h b/src/sp-fespotlight.h index d0b04250f..d48cf6daa 100644 --- a/src/sp-fespotlight.h +++ b/src/sp-fespotlight.h @@ -33,20 +33,28 @@ struct SPFeSpotLight : public SPObject { /** x coordinate of the light source */ gfloat x; + guint x_set : 1; /** y coordinate of the light source */ gfloat y; + guint y_set : 1; /** z coordinate of the light source */ gfloat z; + guint z_set : 1; /** x coordinate of the point the source is pointing at */ gfloat pointsAtX; + guint pointsAtX_set : 1; /** y coordinate of the point the source is pointing at */ gfloat pointsAtY; + guint pointsAtY_set : 1; /** z coordinate of the point the source is pointing at */ gfloat pointsAtZ; + guint pointsAtZ_set : 1; /** specular exponent (focus of the light) */ gfloat specularExponent; + guint specularExponent_set : 1; /** limiting cone angle */ gfloat limitingConeAngle; + guint limitingConeAngle_set : 1; //other fields };