Make out with the barely legal babe

From Create Your Own Story

(Difference between revisions)
m (Reverted edit of Commodus, changed back to last version by Platypus)
Line 1: Line 1:
-
The '''Koch snowflake''' (or '''Koch star''') is a [[mathematics|mathematical]] [[curve]] and one of the earliest [[fractal]] curves to have been described. It appeared in a [[1904]] paper entitled "On a continuous curve without tangents, constructible from elementary geometry" (''original French title: "Sur une courbe continue sans tangente, obtenue par une construction géométrique élémentaire"'') by the [[Sweden|Swedish]] [[mathematician]] [[Helge von Koch]]The lesser known '''Koch curve''' is the same as the snowflake, except it starts with a [[line segment]] instead of an [[equilateral triangle]]The Koch curve is a special case of the [[de Rham curve]].
+
There's a tent in the front of your trunks just from thinking about making it with the preteen. You spread out a blanket on the sand, just beyond the edge of the surfYou lie her down on it and kiss her passionatelyShe responds by parting her teeth so you can get your tongue into her mouth.
-
One can imagine that it was created by starting with a line segment, then recursively altering each line segment as follows:
+
Do you:
-
# divide the line segment into three segments of equal length.
+
*[[Pull off her bikini top so you can rub her nonexistent boobs]]
-
# draw an [[equilateral]] triangle that has the middle segment from step 1 as its base and points outward.
+
*[[Stick your hand inside her bikini bottom]]
-
# remove the line segment that is the base of the triangle from step 2.
+
*[[Toss her in the water]]
-
 
+
*[[Invite the blonde to join the two of you]]
-
After doing this once the result is a shape similar to the [[Star of David]].
+
{{SexRompStatus|Location=''[[The Beach]]''|Health=Horny|MP=0|Level=1}}
-
 
+
[[Category: Smutty Sex Romp]]
-
The Koch curve is the limit approached as the above steps are followed over and over again.
+
-
 
+
-
The Koch curve has an infinite length because each time the steps above are performed on each line segment of the figure there are four times as many line segments, the length of each being one-third the length of the segments in the previous stage. Hence the total length increases by one third and thus the length at step ''n'' will be (4/3)<sup>n</sup>: the [[fractal dimension]] is log 4/log 3 ≈ 1.26, greater than the dimension of a line (1) but less than [[Peano]]'s [[space-filling curve]] (2).
+
-
 
+
-
The Koch curve is [[continuous function|continuous]] but not [[differentiable]] anywhere.
+
-
 
+
-
The area of the Koch snowflake is <math>\\frac{2\\sqrt{3}s^2}{5}</math>, where ''s'' is the measure of one side of the original triangle, and so an infinite perimeter encloses a finite area.<ref>http://ecademy.agnesscott.edu/~lriddle/ifs/ksnow/ksnow.htm</ref>
+
-
 
+
-
As noted in the article on [[geometric series]], the area of the Koch snowflake is 8/5 times the area of the base triangle.
+
-
 
+
-
==Representation as Lindenmayer system==
+
-
The Koch Curve can be expressed by a [[rewrite system]] ([[Lindenmayer system]]).
+
-
 
+
-
:'''Alphabet''' :  F
+
-
:'''Constants''' :  +, &minus;
+
-
:'''Axiom''' :  F++F++F
+
-
:'''Production rules''':
+
-
:      F &rarr; F&minus;F++F&minus;F
+
-
 
+
-
Here, ''F'' means "draw forward", ''+'' means "turn right 60°", and ''-'' means "turn left 60°" (see [[turtle graphics]]).
+
-
 
+
-
==Implementations==
+
-
Below are a variety of implementations of the Koch snowflake.
+
-
 
+
-
===Logo===
+
-
Below is a recursive implementation in [[Logo (programming language)|Logo]]. It can be tried out with most implementations of Logo, or online with the [[Java (programming language)|Java]] implementation [http://xlogo.tuxfamily.org/en/index-en.html XLogo].
+
-
 
+
-
Try start, call <code>rt 30 koch 100</code>.
+
-
 
+
-
to koch :x
+
-
  repeat 3 [triline :x rt 120]
+
-
end
+
-
to triline :x
+
-
  if :x < 1 [fd :x] [triline :x/3 lt 60 triline :x/3 rt 120 triline :x/3 lt 60 triline :x/3]
+
-
end
+
-
 
+
-
===Web Turtle===
+
-
Here follows a sample implementation of the Koch curve for a '''Turtle robot''' written in a [[Logo (programming language)|Logo]]-like language.  It can be tried out online with [http://www.sonic.net/~nbs/webturtle/webturtle.cgi Web Turtle]. Change the value of A in the first line to any number from 1 to 5 to see the different levels of complexity.
+
-
 
+
-
LET A 5
+
-
; calculate adjusted side-length
+
-
LET B 243
+
-
REPEAT A
+
-
  LET B B/3
+
-
NEXT
+
-
; place pointer
+
-
POINT 150
+
-
MOVE 140
+
-
POINT 0
+
-
; start
+
-
GO SIDE
+
-
RIGHT 120
+
-
GO SIDE
+
-
RIGHT 120
+
-
GO SIDE
+
-
; finished.
+
-
END
+
-
 
+
-
; main loop
+
-
# SIDE
+
-
  GO F
+
-
  LEFT 60
+
-
  GO F
+
-
  RIGHT 120
+
-
  GO F
+
-
  LEFT 60
+
-
  GO F
+
-
RETURN
+
-
 
+
-
; forward
+
-
# F
+
-
  IF A > 1
+
-
    ; go deeper depending on level
+
-
    LET A A-1
+
-
    GO SIDE
+
-
    LET A A+1
+
-
  ELSE
+
-
    ; or just do a single line
+
-
    DRAW B
+
-
  ENDIF
+
-
RETURN
+
-
 
+
-
===Python===
+
-
Here is the Koch curve in Python.
+
-
 
+
-
import turtle
+
-
set="F"
+
-
for i in range(5): set=set.replace("F","FLFRFLF")
+
-
turtle.down()
+
-
for move in set:
+
-
    if move is "F": turtle.forward(100.0/3**i)
+
-
    if move is "L": turtle.left(60)
+
-
    if move is "R": turtle.right(120)
+
-
input ()
+
-
 
+
-
The program can be easily modified to show the entire snowflake:
+
-
 
+
-
import turtle
+
-
set="F"
+
-
for i in range(5): set=set.replace("F","FLFRFLF")
+
-
set=set+"R"+set+"R"+set
+
-
turtle.down()
+
-
for move in set:
+
-
    if move is "F": turtle.forward(100.0/3**i)
+
-
    if move is "L": turtle.left(60)
+
-
    if move is "R": turtle.right(120)
+
-
input ()
+
-
 
+
-
== Variants of the von Koch curve ==
+
-
Following von Koch's concept, several variants of the von Koch curve were designed, considering right angles (quadratic), other angles (Cesaro) or circles and their extensions to higher dimensions (Sphereflake),
+
-
 
+
-
{| border="0" cellpadding="4" rules="all" style="border: 1px solid #999; background-color:#FFFFFF"
+
-
|- align="center" bgcolor="#cccccc"
+
-
! Variant || Illustration|| Construction||
+
-
|-
+
-
| 1D & angle=85°|| [[Image:Koch Curve 85degrees.png|thumb|150px|Cesaro fractal. ]]|| The Cesaro fractal is a variant of the von Koch curve with an angle between 60° and 90° (here 85°).
+
-
|-
+
-
| 1D & 90° angle || [[Image:Quadratic Koch 2.png|thumb|150px|Quadratic type 1 curve]]|| align="left"| [[Image:Quadratic Koch curve type1 iterations.png|thumb|450px| The first 2 iterations.]]
+
-
|-
+
-
| 1D & 90° angle || [[Image:Quadratic Koch.png|thumb|150px|Quadratic type 2 curve]]|| align="left"| [[Image:Quadratic Koch curve type2 iterations.png|thumb|450px| The first 2 iterations. Its fractal dimension equals 1.5 and is exactly half-way between dimension 1 and 2. It is therefore often chosen when studying the physical properties of non-integer fractal objects.]]
+
-
|-
+
-
| 2D & triangles|| [[Image:Koch surface.png|thumb|150px|von Koch surface]]|| [[Image:Koch surface iterations.png|thumb|450px| The first 2 iterations. Natural extension of the von Koch curve in 2 dimensions.]]
+
-
|-
+
-
| 2D & 90° angle|| [[Image:Quadratic Koch 3D (type1).png|thumb|150px|Quadratic type 1 surface]]|| Extension of the quadratic type 1 curve. The Illustration on the left shows the fractal after the second iteration
+
-
|-
+
-
| 2D & 90° angle|| [[Image:Quadratic Koch 3D.png|thumb|150px|Quadratic type 2 surface]]|| Extension of the quadratic type 2 curve. The Illustration on the left shows the fractal after the first iteration.
+
-
|-
+
-
| 2D & spheres || || Eric Haines has developed the '''sphereflake fractal''', which is a three-dimensional version of the Koch snowflake, using spheres.
+
-
|}
+
-
 
+
-
== See also ==
+
-
{{Commons|Koch curve}}
+
-
{{Commons|Koch snowflake}}
+
-
 
+
-
* [[List of fractals by Hausdorff dimension]]
+
-
 
+
-
== References ==
+
-
<references/>
+
-
[[Category:Fractal curves]]
+
-
 
+
-
[[bn:কচ স্নোফ্লেক]]
+
-
[[ca:Floc de neu de Koch]]
+
-
[[cs:Kochova křivka]]
+
-
[[de:Koch-Kurve]]
+
-
[[es:Copo de nieve de Koch]]
+
-
[[eo:Neĝero de Koch]]
+
-
[[fr:Flocon de Koch]]
+
-
[[gl:Curva de Koch]]
+
-
[[ko:코흐 곡선]]
+
-
[[hr:Kochova krivulja]]
+
-
[[it:Curva di Koch]]
+
-
[[he:פתית השלג של קוך]]
+
-
[[hu:Koch-görbe]]
+
-
[[ja:コッホ曲線]]
+
-
[[pl:Krzywa Kocha]]
+
-
[[pt:Curva de Koch]]
+
-
[[ru:Кривая Коха]]
+
-
[[sk:Kochova krivka]]
+
-
[[sl:Kochova snežinka]]
+
-
[[sr:Кохова пахуља]]
+
-
[[fi:Kochin käyrä]]
+
-
[[sv:Von Kochs kurva]]
+
-
[[th:เกล็ดหิมะค็อค]]
+

Revision as of 05:01, 15 December 2007

There's a tent in the front of your trunks just from thinking about making it with the preteen. You spread out a blanket on the sand, just beyond the edge of the surf. You lie her down on it and kiss her passionately. She responds by parting her teeth so you can get your tongue into her mouth.

Do you:

Status
Health Horny Location:

The Beach

MP 0
Level 1
Personal tools