From 8ed2433ad2de7c43293f27179212069913f469fb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 10 Sep 2018 19:30:51 +0200 Subject: [PATCH] anims:: a full circle marker in circle animation --- screenshot.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/screenshot.cpp b/screenshot.cpp index 18ec8d8a..5acc5884 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -514,10 +514,12 @@ bool record_animation() { void display_animation() { if(ma == maCircle && (circle_display_color & 0xFF)) { for(int s=0; s<10; s++) { + if(s == 0) curvepoint(ggmatrix(rotation_center_c.at) * xpush0(circle_radius - .1)); for(int z=0; z<100; z++) curvepoint(ggmatrix(rotation_center_c.at) * xspinpush0((z+s*100) * 2 * M_PI / 1000., circle_radius)); queuecurve(circle_display_color, 0, PPR::LINE); } if(sphere) for(int s=0; s<10; s++) { + if(s == 0) curvepoint(centralsym * ggmatrix(rotation_center_c.at) * xpush0(circle_radius - .1)); for(int z=0; z<100; z++) curvepoint(centralsym * ggmatrix(rotation_center_c.at) * xspinpush0((z+s*100) * 2 * M_PI / 1000., circle_radius)); queuecurve(circle_display_color, 0, PPR::LINE); }