File:Unknown curve animated.gif

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Unknown_curve_animated.gif(266 × 230 pixels, file size: 14.75 MB, MIME type: image/gif, looped, 630 frames)

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
Description
English: Unknown curve in 2-space. It's parametric representation is as follows:

x = 5cost - 5cos80tsint;

y = 4sint - 2sin80t,

t ∈ [0,2π]

This animation's frames were generated using AutoCAD 2009 and a modified version of the following AutoLISP code:

   (defun x_gen (x)
   (* 5 (- (cos x)  (* (cos (* 80 x)) (sin x)) ) )
   )
   (defun y_gen (x)
   (* 2 (- (* (sin x) 2 ) (sin (* 80 x)) ))
   )
   (defun drawfc ()
   (command "._spline")
   (while (< start ende)
   (command (list (x_gen start) (y_gen start)))
   (setq start (+ start delta))
   )
   (command (list (x_gen ende) (y_gen ende)) "" "" "")
   )
   (defun c:draw_para2 (/ start ende delta)
   (setvar "CMDECHO" 0)
   (setq start (getreal "\nStart value (X): "))
   (setq ende (getreal "\nEnd value (X): "))
   (setq delta (getreal "\nPrecision: "))
   (drawfc)
   (princ)
   )
Note that the "spline" command was used for interpolation. Step size used was 0.01 units. Original uncropped jpeg frames may be made available upon request.
Date
Source Own work
Author Mburdis
Other versions Unknown curve 2d.jpg

Licensing

[edit]
I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution
This file is licensed under the Creative Commons Attribution 3.0 Unported 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.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current13:38, 31 December 2010Thumbnail for version as of 13:38, 31 December 2010266 × 230 (14.75 MB)Mburdis (talk | contribs){{Information |Description={{en|1=Unknown curve in 2-space. It's parametric representation is as follows: x = 5cost - 5cos80tsint; y = 4sint - 2sin80t, t ∈ [0,2π] This animation's frames were generated using AutoCAD 2009 and a modified version o

There are no pages that use this file.