Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 37
» Latest member: Ludwig
» Forum threads: 195
» Forum posts: 1,499
Full Statistics
|
Online Users |
There are currently 48 online users. » 0 Member(s) | 47 Guest(s) Bing
|
|
|
TTF fonts |
Posted by: johnno56 - 12-11-2024, 07:07 AM - Forum: NaaLaa 7 Questions
- Replies (11)
|
 |
A quick font question. Is there a reason as to why "ttf" fonts do not work with N7. Not a "deal breaker"... Just wanting to know, as the process of using the "N6" font tool, can be a little tedious if I need to use multiple font sizes... Use the Bitmap font generator site to load the ttf then export for each font size; then use the font tool to create an ftn file for each size...
This is only an issue if I do not have the font already in the system.... Just curious...
|
|
|
Doodle |
Posted by: johnno56 - 11-25-2024, 07:23 PM - Forum: NaaLaa 7 Code
- Replies (7)
|
 |
This is a QB64 converted graphics demo by "Dav". It had no name... figured doodle is better than nothing... lol
Code: ' Open a window and enable double buffering.
set window "Doodle", 640, 640, false
set redraw off
visible i, t, x, y, w, h, pi
pi = 3.141592654
w = 640
h = 640
do
t = t + 0.01
set color 0, 0, 0, 25
draw rect 0, 0, w, h, true
for i = 1 to 8
set color i * 32, i * 32 * 0.7, 0, i * 32
for x = 0 to w
y = 100 * sin(pi * x / w) * sin(1 * pi * x / w + t + i * t * pi * 0.1)
draw ellipse x, h / 2 + y, i, i
draw ellipse w / 2 + y, x, i, i
next
next
redraw
fwait 30
until keydown(KEY_ESCAPE, true)
|
|
|
Arrays and Tables |
Posted by: johnno56 - 11-24-2024, 09:17 PM - Forum: Everything else
- Replies (4)
|
 |
I am familiar with arrays and gradually getting my head around tables... My question may be lame but I need to know... How does one determine whether to use an array or a table?
J
|
|
|
Manual |
Posted by: johnno56 - 11-23-2024, 11:11 AM - Forum: Everything else
- Replies (2)
|
 |
Quick question: If there a manual or a list of all of N7's commands with descriptions?
I am fairly certain that I may know the answer... but I need to ask... lol
J
|
|
|
|