python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I want to make a Cornu spiral in blender using nodes
And I have no clue where to start. In case you don't know what a cornu spiral is: https://mathworld.wolfram.com/CornuSpiral.html
All that I see are intrincated maths whose terms I'm not familiar with ...
Lerian Acosenossa
Votes: 0
Answers: 1
Appearing animation for spiral matrix
I'm trying to make a spiral matrix, but when I tried to make the numbers appear one by one, it only shows the lines one by one.
Please help!
import numpy as np
from time import sleep
n = int(input(&q...
AntiDestroyer
Votes: 0
Answers: 1
Fill matrix with two numbers in a spiral
In the middle of matrix is number x. Matrix is filled with x in a spiral, while the rest is filled with y.
Example:
int x=4, y=6, v=7, s=9;
OUTPUT:
6 6 6 6 6 6 6 6 4
4 4 4 4 4 4 4 6 4
4 6 6 6 6 6 4 6...
user17936920
Votes: 0
Answers: 2
p5.js: make an animated spiral with line instead of ellipse?
I'm trying to animate a spiral using a line, but can only seem to get it to work using ellipses.
Does anyone know how to replace the ellipse() with line()?
here is the code:
var angle = 0.0;
var offse...
Emma Culhane
Votes: 0
Answers: 1