Search found 47 matches

by neorobin
12 Aug 2019 05:30
Forum: DOS Batch Forum
Topic: Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences
Replies: 2
Views: 6820

Re: Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences

Absolutely beautiful execution! I love graphical scripts like this, and you're consistent! Very well done! Excellent use of math. Bravo, sir! :D :D :D Thank you very much for your attention and appreciation! :D :D :D I saw some of your works, So I learned about this new feature of the Windows 10 co...
by neorobin
11 Aug 2019 10:53
Forum: DOS Batch Forum
Topic: Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences
Replies: 2
Views: 6820

Pointer digital dual display clock - Windows 10 Console Virtual Terminal Sequences

https://raw.githubusercontent.com/neorobin/WIN10CMD_Console-Virtual-Terminal-Sequences_ANSI/master/pointer_digital_dual_display_clock_WIN10/pointer_digital_dual_display_clock_WIN10.gif Update 20190812_190023: Let the pointer be blocked in the digital display area, no longer interfere with the displ...
by neorobin
22 Jan 2019 10:08
Forum: DOS Batch Forum
Topic: Foxidrive has left us
Replies: 42
Views: 166473

Re: Foxidrive has left us

I found this post after more than two years. I have experienced the death of some relatives, the death of some closely related animals. I have been experiencing vegetarian life for a few months. I think of human life as the life of the universe. I think that any life is like a random number in an in...
by neorobin
02 Jun 2017 09:02
Forum: DOS Batch Forum
Topic: Reduced-Flicker in dos batch. It's possible?
Replies: 29
Views: 32830

Re: Reduced-Flicker in dos batch. It's possible?

I did a clock. This time I increased the display accuracy to one hundredth of a second. But I did not test the frame rate. I do not know how high its frame rate can be. Please replace the ★ in the code with TAB(ASCII 9) The frame rate of the GIF picture below is below the actual running frame rate o...
by neorobin
09 May 2017 07:36
Forum: DOS Batch Forum
Topic: fractal: Gosper curve
Replies: 1
Views: 3087

fractal: Gosper curve

https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Gosper_curve_3.svg/320px-Gosper_curve_3.svg.png @echo off & setlocal enableDelayedExpansion set "SIN=(t-t*t/1875*t/320000+t*t/1875*t/15625*t/16000*t/2560000-t*t/1875*t/15360*t/15625*t/15625*t/16000*t/44800000)" set "COS=(1...
by neorobin
17 Apr 2017 23:53
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

@einstein1969 I did a test to achieve the purpose of the cursor feed back multiple lines. But I can not find a way to do cursor feed back and color output at the same time. @echo off mode 15 for /L %%i in (1 1 5) do echo;Line %%i REM The content of file @test is one TAB followed 10 BS, no other any ...
by neorobin
17 Apr 2017 01:54
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

@Aacini, thank you for your attention and feedback. I wrote a version with simple algorithm explain. There is a good algorithm explain here: m My algorithmic description version is just for my batch implementation code. The first 9 turns curves and vectors results: TURN 1 vector_x=-1 vector_y=0 The ...
by neorobin
17 Apr 2017 01:48
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

Thanks, Ed Dyreen

But Win7 and after systems seems to be no full-screen feature
by neorobin
15 Apr 2017 03:04
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

re: Sounak@9434

Thanks for your feedback!
by neorobin
14 Apr 2017 21:35
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

re: Ed Dyreen

Thanks!

ScreenToGif
https://screentogif.codeplex.com/
by neorobin
14 Apr 2017 10:46
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Re: Fractal: Dragon curve

Hi, einstein1969

OK!

Thanks for your attention and feedback.
by neorobin
14 Apr 2017 01:42
Forum: DOS Batch Forum
Topic: Fractal: Dragon curve
Replies: 12
Views: 13439

Fractal: Dragon curve

https://ooo.0o0.ooo/2017/04/14/58f0886b81dfa.gif Please replace the ★ in code by a real TAB (ASCII 0x09). Tested only on WIN7 64bit %1 @goto :initCON @echo off & setlocal enabledelayedexpansion call :clearVars set /a "w=100,h=68, h1=h+0,t=w*h,xc=w/2+1,yc=h/2" set "TAB=★" &am...
by neorobin
14 Oct 2016 11:39
Forum: DOS Batch Forum
Topic: Fastest sin(x) in dos batch
Replies: 47
Views: 54454

Re: Fastest sin(x) in dos batch

@neorobin can you explain this part? s1=(t-p#2^t-p3#2)>>31 why that XOR? Hi, einstein1969 I used this test to determine whether the value of t is in this range [Pi / 2, 3 * Pi / 2) This is a general method for test a value t in [a, b) (a <= b) set da=t-a, db=t-b When t is less than a, the MSB (Most...
by neorobin
13 Oct 2016 02:21
Forum: DOS Batch Forum
Topic: Cmdgfx - draw 3d and graphic primitives (polygons,circles etc) in cmd window (now with 24-bit RGB support!)
Replies: 125
Views: 215708

Re: Cmdgfx - draw graphic primitives (polygons,circles etc) in cmd line window

Hi einstein1969 I made another implementation, origin from 3D Sphere http://www.dostips.com/forum/viewtopic.php?f=3&t=5594 map rule: [0,2pi) to [-pi/2, pi/2] angle t in [0,2pi) 0 <= t < pi/2 t -> t in [-pi/2, 0) not need map pi/2 <= t < 3pi/2 t -> pi-t in (-pi/2, pi/2] sin(t) = sin(pi-t), cos(t)...
by neorobin
07 Oct 2016 04:23
Forum: DOS Batch Forum
Topic: Read arrow keys and show color text in an efficient way
Replies: 17
Views: 45497

Re: Read arrow keys and show color text in an efficient way

:arrow: The second part of this application is ready 2016-04-12: Code modified to fix a synchronization problem and a bug when the window/buffer sizes are changed. Aacini Nice effect! I like it! Your Tetris game code a bit long ( http://www.dostips.com/forum/viewtopic.php?f=3&t=6936&p=46206...