Search found 57 matches

by tincho
Wednesday 28th December 2022 10:35pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: 3D Models Viewer

The output from the last command: dpkg-query: no packages found matching libgl-dev So that answers that question. Next steps ? Ok, after creating a linux mint xfce 21.1 virtual machine I installed gambas stable from PPA 3.17.3 and I couldn't find the library because it was not installed. Then with ...
by tincho
Wednesday 28th December 2022 10:11pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: 3D Models Viewer

That did get rid of the error, but I can not seem to find libgl-dev in the Fedora repositories. ok, after creating a fedora 37 xfce virtual machine I have made a test and as the libGL library is not installed in the system I get the same error, but after installing the libglvnd-devel package everyt...
by tincho
Tuesday 27th December 2022 8:21pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: 3D Models Viewer

Technopeasant wrote: Monday 26th December 2022 5:23am Installed from the Farm and got a type error.
Hello, a moment ago I uploaded the changes to fix this error.
I hope it works fine now.
Thanks for the feedback.
Martin.
by tincho
Monday 19th December 2022 2:07pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: 3D Models Viewer

The output from the last command: dpkg-query: no packages found matching libgl-dev So that answers that question. Next steps ? if your distro is "Linux Mint 20.3 Una" wich is based on Ubuntu 20.04 LTS (Focal Fossa). I read in the ubuntu package list there is libgl-dev: https://packages.ub...
by tincho
Saturday 17th December 2022 11:47am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: 3D Models Viewer

You can also get the system information from Gambas. Help [? menu] & System Information. It gives a lot more data than the cat statement you provided. locate fails to find libGl.so - assume that this is becaue the version on my machine is named libGl.so.1.7.0 ( highlighted in red below ) hehe, ...
by tincho
Friday 16th December 2022 9:49am
Forum: Component Showcase
Topic: FileBox
Replies: 2
Views: 5995

Re: FileBox

This may seem a stupid question, but how do you download a program from GitLab? I can do it from GitHub. I managed to download a file with a very cryptic name (gambas-93afd49f7c129ad8acac46b4aa123479d92b1da5) but that wasn't too much help? Try this: https://gitlab.com/gambas/gambas/-/tree/93afd49f7...
by tincho
Friday 16th December 2022 9:03am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

Re: STL Viewer

On run, I get a 'cannot find dynamic library libGl.so' ok, you have two possibilities, either the library is not installed on your system or the module cannot load it. I have added a patch to warn, when the program ir running from the IDE, with a dialog box in case the library is not installed. On ...
by tincho
Thursday 15th December 2022 10:08am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11358

3D Models Viewer

Hello friends, https://i.imgur.com/vCFgXNS.png Here I share with you this program we made together with TercoIDE to experiment with OpenGL in 3D. The latest version is in the Gambas Farm and also in the gitlab repo. https://gitlab.com/belmotek/stl-viewer https://i.imgur.com/grfbClo.png https://i.img...
by tincho
Sunday 29th May 2022 5:17pm
Forum: Project showcase
Topic: Giskard - SSHFS mount, Hardware report, WakeOnLAN etc.
Replies: 0
Views: 12589

Giskard - SSHFS mount, Hardware report, WakeOnLAN etc.

Hellow friends. https://i.imgur.com/6Tx21OS.png In SOHO environments where there are usually 5 to 10 Linux machines and a file server (usually a NAS) and you want to use the SSHFS protocol it becomes a bit tedious to manually connect the resources each time you log in to the system nor is it conveni...
by tincho
Monday 9th May 2022 2:13pm
Forum: General
Topic: Paint sample
Replies: 2
Views: 1502

Re: Paint sample

This code should help (I had to change your line 27 as it caused a crash): - ok, it works, but now I add the "E" and... ' Gambas class file Private afPoints As New Float[][] Public Sub Lettering_Click() afPoints.Clear Select Last.Tag Case "a" afPoints.Add([10, 100]) afPoints.Add...