File:6 petal flower.svg

Summary

Description
English: 6 petal flower : two 3 petal rose curves
Date
Source Own work
Author Adam majewski
Other versions
SVG development
InfoField
 
The SVG code is valid.
 
This plot was created with Gnuplot.
Category:Valid SVG created with Gnuplot code#6%20petal%20flower.svg
 
This plot uses embedded text/digits.
Source code
InfoField

Gnuplot code

/*

Batch file for Maxima CAS
save as a o.mac
run maxima :
       
 maxima
 
and then : 

batch("a.mac");

*/
kill(all);
remvalue(all);
ratprint:false; /*  It doesn't change the computing, just the warnings. */
display2d:false;
numer: true;





/* 

http://mathworld.wolfram.com/Rose.html

r = a* sin(n*t)

If n is odd, the rose is n-petalled. 
If n is even, the rose is 2n-petalled.


If n=r/s is a rational number, then the curve closes at a polar angle of theta=pi*s*p, where  
p=1 if r*s is odd 
p=2 if r*s is even.

 
If n is irrational, then there are an infinite number of petals.


*/

RoseCurve_Polar(n, a):= 
	/* polar(radius, ang, minang, maxang) */
	polar(a*sin(n*t),t,0,2*%pi)$
	
	
	
/*
 https://commons.wikimedia.org/wiki/File:Two_3_Petal_roses.png
 
*/	

RoseCurves_Polar(n, aMin, aMax, aStep):= block(

	[a,l, ll],
	ll:[],
	for a:aMin step aStep thru aMax do (
		l:RoseCurve_Polar(n,a),
		ll: cons(l,ll),
		l:RoseCurve_Polar(n,-a), /* mirror symmmetry  */
		ll: cons(l,ll)
	),
	
	return (ll)


)$










n:3;
ll:RoseCurves_Polar(n, 1, 20,0.5)$


load(draw);

/* strings */
path:"~/c/julia/parabolic/hawaian/6/"$ /*  if empty then file is in a home dir , path should end with "/" */ 
FileName:  string(n)$


draw2d(
	terminal      = svg,
	file_name = sconcat(path, FileName,""),
	title = "",
	dimensions = [1000, 1000],
	nticks=300,
	ll)$


/*  https://math.stackexchange.com/questions/104163/writing-a-polar-equation-for-the-graph-of-an-implicit-cartesian-equation 
l:polar(abs(sin(2*t))^(1/3),t,0,2*%pi);
ll: cons(l,ll);
l:polar(abs(sin(2*t)),t,0,2*%pi);
ll: cons(l,ll);

ll:[];
draw2d(nticks=300,ll);

*/

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#6%20petal%20flower.svg
Category:Self-published work Category:SVG rose curves Category:6-fold dihedral symmetry Category:Images with Maxima CAS source code
Category:6-fold dihedral symmetry Category:CC-BY-SA-4.0 Category:Images with Maxima CAS source code Category:SVG rose curves Category:Self-published work Category:Valid SVG created with Gnuplot code