Search found 4 matches

by 0x69
Mon May 13, 2019 12:04 pm
Forum: Whither newLISP?
Topic: problem with floats
Replies: 1
Views: 3699

problem with floats

Hi,

When I try to execute

Code: Select all

(+ 1.1 1.2)
I get error:
ERR: value expected in function + : .1
NewLisp version is v.10.7.1 64-bit on Linux (Ubuntu 18.04.1 LTS) IPv4/6 UTF-8 libffi

What's the problem here with floats and how to fix it ?
by 0x69
Wed Dec 01, 2010 5:59 pm
Forum: newLISP Graphics & Sound
Topic: GPGPU support
Replies: 1
Views: 6731

GPGPU support

Hi guys ! First newLISP is great ! How about GPGPU support ? Are there some wrappers for GPGPU libraries such as OpenCL, CUDA ? If not - maybe devs can make bindings to that libs (preferably to OpenCL, because its open source and is not locked-in to NVIDIA cards). Please, add support, also that coul...
by 0x69
Sun Jul 25, 2010 1:09 pm
Forum: newLISP Graphics & Sound
Topic: image processing
Replies: 2
Views: 7386

Re: image processing

As for now -I found workarround - read,modify & save PPM image file. It's trivial to work with PPM images , because format is very simple, kinda- P3 # The P3 means colors are in ASCII, then 3 x 2 image size, then 255 for max color, then RGB triplets 3 2 255 255 0 0 0 255 0 0 0 255 255 255 0 255 255 ...
by 0x69
Sun Jul 25, 2010 9:33 am
Forum: newLISP Graphics & Sound
Topic: image processing
Replies: 2
Views: 7386

image processing

Hi,

I want to manipulate individual pixels of image - is it possible in newLISP ?
That is, I want to get RGB values of each pixel and change these values by my needs.
[If such functionality isn't there - maybe newLISP can be extended to support that ? If so - when ? :) ]

Thanks for answer.