Author Topic: Qons gallery  (Read 21190 times)

Toupie

  • Jr. Member
  • **
  • Posts: 62
    • View Profile
Re: Qons gallery
« Reply #15 on: October 16, 2013, 03:17:40 pm »
You should not be afraid of using conveyor belts, they aren't that costly to make. It's the Materalizers/Dematerializers that are costly.

I like to build my factories visible. I want to see them working, it's part of the beauty.

I've never tried to transport water on conveyer belts. But everything about water is unreliable I think. Make a 2 block hole and put one water in it, and then put another water on top of that water, and they may both be moving back and forth in sync.

Still, really nice idea.

Qon

  • Full Member
  • ***
  • Posts: 112
    • View Profile
Re: Qons gallery
« Reply #16 on: October 23, 2013, 07:46:49 am »
Made 5th iteration of the Menger sponge! It's 243^3 big :)
In the v1.22 beta of qourse...

To make even bigger fraqtals I need functions to retrieve the players qoordinate and view direction. I think the generation speed is enough to generate the fraqtals on-the-fly while flying :>
Took ~30 seconds or something to generate the 243^3 qube which is basiqally my view distance in all directions. If I limit the generation to what is in front of me at the moment and what recently entered the view distance then I'm sure it is possible. *working*

I'll have to fix some better texture for that~


« Last Edit: October 23, 2013, 08:40:10 am by Qon »

olive

  • Administrator
  • Full Member
  • *****
  • Posts: 149
    • View Profile
Re: Qons gallery
« Reply #17 on: October 23, 2013, 08:44:43 pm »
Made 5th iteration of the Menger sponge! It's 243^3 big
In the v1.22 beta of qourse...

To make even bigger fraqtals I need functions to retrieve the players qoordinate and view direction. I think the generation speed is enough to generate the fraqtals on-the-fly while flying :>
Took ~30 seconds or something to generate the 243^3 qube which is basiqally my view distance in all directions. If I limit the generation to what is in front of me at the moment and what recently entered the view distance then I'm sure it is possible. *working*

I'll have to fix some better texture for that~

Very nice !!!

For the player coordinates and view direction, you'll be happy... that's in the package  :)

You can get these infos with the var GetInfo(int InfoNum) function.

Depending on the InfoNum parameter, you'll get :

0: (int) Max for InfoNum parameter.
1: (float) Player Location (x)
2: (float) Player Location (y)
3: (float) Player Location (z)
4: (int) Player Location (x) in Voxel Units
5: (int) Player Location (y) in Voxel Units
6: (int) Player Location (z) in Voxel Units
7: (float) Player Viewing direction (yaw)
8: (float) Player Viewing direction (pitch)
9: (float) Player Viewing direction (roll)
11: (float) Player Head Location (x)
12: (float) Player Head Location (y)
13: (float) Player Head Location (z)
14: (int) Player Head Location (x) in Voxel Units
15: (int) Player Head Location (y) in Voxel Units
16: (int) Player Head Location (z) in Voxel Units

The Blackvoxel Team

Toupie

  • Jr. Member
  • **
  • Posts: 62
    • View Profile
Re: Qons gallery
« Reply #18 on: October 23, 2013, 09:09:18 pm »
Very nice !!!

For the player coordinates and view direction, you'll be happy... that's in the package  :)

You can get these infos with the var GetInfo(int InfoNum) function.

Depending on the InfoNum parameter, you'll get :

0: (int) Max for InfoNum parameter.
1: (float) Player Location (x)
2: (float) Player Location (y)
3: (float) Player Location (z)
4: (int) Player Location (x) in Voxel Units
5: (int) Player Location (y) in Voxel Units
6: (int) Player Location (z) in Voxel Units
7: (float) Player Viewing direction (yaw)
8: (float) Player Viewing direction (pitch)
9: (float) Player Viewing direction (roll)
11: (float) Player Head Location (x)
12: (float) Player Head Location (y)
13: (float) Player Head Location (z)
14: (int) Player Head Location (x) in Voxel Units
15: (int) Player Head Location (y) in Voxel Units
16: (int) Player Head Location (z) in Voxel Units

The Blackvoxel Team

Thank you.
I was just wondering what that function did.

Seward

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: Qons gallery
« Reply #19 on: October 24, 2017, 10:13:44 am »
Made 5th iteration of the Menger sponge! It's 243^3 big :)
In the v1.22 beta of qourse...

To make even bigger fraqtals I need functions to retrieve the players qoordinate and view direction. I think the generation speed is enough to generate the fraqtals on-the-fly while flying :>
Took ~30 seconds or something to generate the 243^3 qube which is basiqally my view distance in all directions. If I limit the generation to what is in front of me at the moment and what recently entered the view distance then I'm sure it is possible. *working*

I'll have to fix some better texture for that~

Looks great. Are you working on anything similar currently?