Search:

Type: Posts; User: bluatigro

Search: Search took 0.09 seconds.

  1. Replies
    0
    Views
    455

    VS 2017 genetic programming problem ?

    this is a try at Genetic Programming in vb
    i got this working in libertybasic

    GP what :
    from a functionplot or tabel to formula

    GP how :
    1 : write random formula's
    2 : calculate output of...
  2. Thread: raytrace ?

    by bluatigro
    Replies
    4
    Views
    876

    VS 2017 Re: raytrace ?

    what is error here ?


    spheres(spheretel).fill(x, y, z, r, mat)
  3. Thread: raytrace ?

    by bluatigro
    Replies
    4
    Views
    876

    VS 2017 Re: raytrace ?

    update :


    '' bluatigro 4 sept 2017
    '' ray world module
    '' needs basis3d

    public module ray_world

    public const verry_big as double = 1e9
  4. Thread: raytrace ?

    by bluatigro
    Replies
    4
    Views
    876

    VS 2017 Re: raytrace ?

    update :


    '' bluatigro 4 sept 2017
    '' all basic stuf you need for graphics3d :
    '' 3dengine , math stuf , matrix , double3d and colors

    public module basis3D

    Public Class Dbl3D
  5. Thread: raytrace ?

    by bluatigro
    Replies
    4
    Views
    876

    VS 2017 Re: raytrace ?

    update :
    form1 as it shoot be


    '' bluatigro 4 sept 2017
    '' raytracer form
    '' needs ray_world and basis3D

    Public Class Form1
  6. Replies
    0
    Views
    575

    VS 2017 opengl setup ?

    how do i create a project whit opengl stuf working ?

    i have experiance in opengl whit freebasic

    [ i dont know whitch version so asume 1.1 ]
  7. Thread: raytrace ?

    by bluatigro
    Replies
    4
    Views
    876

    VS 2017 raytrace ?

    NOT TESTED !!!

    i stil need help : i ain't have the book jet

    wat is missing and was is a error ?

    now you can see why i needed a dbl3d/color class


    '' bluatigro 30 aug 2017
  8. Replies
    2
    Views
    587

    VS 2017 Re: matrix 4 x 4 class

    forgot somthing

    add :


    public shared operator *(m as m4x4, v as dbl3d) as dbl3d
    return new dbl3d(v.x*m.m(0,0)+v.y*m.m(1,0) _
    +v.z*m.m(2,0)+m.m(3,0) _
    ...
  9. Replies
    2
    Views
    587

    VS 2017 matrix 4 x 4 class

    i wil need this in my 3dengine

    i don't think i need .scale()
    but i put it in for others

    .inverse() i have copyed out of a freebasic file

    it shoot work
  10. Replies
    1
    Views
    4,773

    Re: vb 2017 : random 2.0

    i made a mistace
    must be :


    public class random2
    private const size as integer = 32
    private rndtab(size-1) as double
    private i1 as integer
    private i2 as integer
  11. Replies
    7
    Views
    1,096

    VS 2017 Re: operator overloading ?

    @ sitten spynne :
    thanks for help

    update :
    i rebuild it a litle and expanded it

    i got now this :


    '' bluatigro 29 aug 2017
  12. Replies
    1
    Views
    4,773

    vb 2017 : random 2.0

    for if you need a randomgenerator
    whit longer repeattime

    feel free to use
    extensions and inprovements are welkome


    public class random2
    private const size as integer = 32
    private...
  13. Replies
    7
    Views
    1,096

    VS 2017 Re: operator overloading ?

    update :
    i got some help on another forum
    got now this :


    Public Class Dbl3D
    Public x As Double
    Public y As Double
    Public z As Double
    Sub New()
  14. Re: When it comes to Visual Basic, what are the most important topics to know?

    i m interested in writing :
    games [ litle experiance ]
    ai [ some experiance ]
    animations :
    raytracing [ litle experiance ]
    directx [ no working experiance ]
    opengl [ some experiance ]
    sphere's...
  15. Replies
    7
    Views
    1,096

    VS 2017 Re: operator overloading ?

    if the color class had a fromrgb(r,g,b) metod i wood be save
    then i can use :


    function tocolor() as color
    return color.fromrgb(cint(x*255),cint(y*255),cint(z*255))
    end function

    or...
  16. Replies
    7
    Views
    1,096

    VS 2017 Re: operator overloading ?

    i have some experiance in several basic's
    i need to calculate whit doube3d AND colors [ integer3d ]
    it is code saving when you use the same class for the two
    i been programming from 1984
    and i...
  17. Replies
    7
    Views
    1,096

    VS 2017 operator overloading ?

    i want to create several 3d programs
    therefore i need a 3d double class

    this class wil handle colors to

    so i need a toColor() metod

    and i want to use operator overloading

    i got so far as...
  18. Replies
    1
    Views
    537

    VS 2017 poject save ?

    hello

    i have a problem whit vb2017
    i can't find project save in the menu
    so i can't decide what name i give my project
    ans where it 'lands'

    how do i fix this ?
Results 1 to 18 of 20



Click Here to Expand Forum to Full Width