X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Fblineconvert.h;h=2b27187fbf62a367ca750b4164a7c7887da89e62;hb=7c3682a6d1bb940fd74e9e327bbc2dd3a8fdb504;hp=74c98d434e7faf3fcd37c73c8dec1b4559264604;hpb=d15c4522466bedfbe61620c401becae0931854f5;p=synfig.git diff --git a/synfig-studio/trunk/src/synfigapp/blineconvert.h b/synfig-studio/trunk/src/synfigapp/blineconvert.h index 74c98d4..2b27187 100644 --- a/synfig-studio/trunk/src/synfigapp/blineconvert.h +++ b/synfig-studio/trunk/src/synfigapp/blineconvert.h @@ -76,19 +76,19 @@ public: private: //cached data - std::vector f; //the preprocessed input cache - std::vector f_w; + std::vector point_cache; //the preprocessed input cache + std::vector width_cache; //temporary point storage for vector calc std::vector ftemp; - std::vector df; //the derivative cache - std::vector cvt; //the curvature cache + std::vector deriv; //the derivative cache + std::vector curvature; //the curvature cache - std::vector brk; //the break point cache + std::vector break_tangents; //the break point cache - std::vector di, //cumulative distance - d_i; //distance between adjacent segments + std::vector cum_dist, //cumulative distance + this_dist; //distance between adjacent segments std::vector work; //the working point cache for the entire curve std::vector curind;