POV-Ray : Newsgroups : povray.binaries.images : INVITATION: Join the Mississippi Paddle-Wheel Steamer! Server Time
3 Jul 2024 05:31:43 EDT (-0400)
  INVITATION: Join the Mississippi Paddle-Wheel Steamer! (Message 14 to 23 of 73)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: Thomas de Groot
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 25 Mar 2018 03:03:47
Message: <5ab749d3@news.povray.org>
On 24-3-2018 21:18, Sven Littkowski wrote:
> UPDATE
> 
> Having made a small test-run for the transport items that will be, later
> on, inside and around the yellow storage area. Cotton bales and hay
> bales for now, but more to come.
> 

For later correction: the bales intersect the ship.

-- 
Thomas


Post a reply to this message

From: Bald Eagle
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 25 Mar 2018 08:55:00
Message: <web.5ab79c0d2c27e3405cafe28e0@news.povray.org>
Sven Littkowski <I### [at] SvenLittkowskiname> wrote:
> UPDATE
>
> Having made a small test-run for the transport items that will be, later
> on, inside and around the yellow storage area. Cotton bales and hay
> bales for now, but more to come.
>
>
> ---
> Diese E-Mail wurde von AVG auf Viren geprüft.
> http://www.avg.com

That's looking pretty cool so far    :)
For some reason, the way / method it got posted, it doesn't show up as an
in-line image, and it doesn't get listed in the image digest either   :(

Just curious - is it mathematically linked / parameterized so that you can
animate it?


Post a reply to this message

From: Sven Littkowski
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 26 Mar 2018 19:12:25
Message: <5ab97e59@news.povray.org>
Yes, I know. The deck at that location goes upwards. But the foreship
locations where the bales are stored (later on), are fully horizontal.
There won't be any cutting. :-)

---
Diese E-Mail wurde von AVG auf Viren geprüft.
http://www.avg.com


Post a reply to this message

From: Sven Littkowski
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 26 Mar 2018 19:13:39
Message: <5ab97ea3$1@news.povray.org>
Yes, with a little extra work, the wheels and the entire ship can be
animated. But that's not on my list for now. That comes later, much
later. :-)

---

http://www.avg.com


Post a reply to this message

From: Thomas de Groot
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 02:51:02
Message: <5ab9e9d6$1@news.povray.org>
On 27-3-2018 1:12, Sven Littkowski wrote:
> Yes, I know. The deck at that location goes upwards. But the foreship
> locations where the bales are stored (later on), are fully horizontal.
> There won't be any cutting. :-)
> 

If you use the trace() function for positioning the bales on the deck, 
you will avoid such problems.

http://wiki.povray.org/content/Reference:Vector_Expressions#Functions


-- 
Thomas


Post a reply to this message

From: Sven Littkowski
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 05:28:39
Message: <5aba0ec7@news.povray.org>
Thanks. I heard about that function, but have problems to handle it.

But never mind, I have all coordinates of the entire scene in my mind. I
find it difficult to learn to work with so-called WYSIWYG editors, I
hand-code everything. :-)

---
Diese E-Mail wurde von AVG auf Viren geprüft.
http://www.avg.com


Post a reply to this message

From: Sven Littkowski
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 06:44:49
Message: <5aba20a1@news.povray.org>
UPDATE

The progress continues, and the main deck becomes more and more complete...



---
Diese E-Mail wurde von AVG auf Viren geprüft.
http://www.avg.com


Post a reply to this message


Attachments:
Download 'sl - mississippi paddle-wheel steamer - prow atop side.jpg' (2358 KB)

Preview of image 'sl - mississippi paddle-wheel steamer - prow atop side.jpg'
sl - mississippi paddle-wheel steamer - prow atop side.jpg


 

From: Alain
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 15:03:43
Message: <5aba958f$1@news.povray.org>
Le 18-03-27 à 05:28, Sven Littkowski a écrit :
> Thanks. I heard about that function, but have problems to handle it.
> 
> But never mind, I have all coordinates of the entire scene in my mind. I
> find it difficult to learn to work with so-called WYSIWYG editors, I
> hand-code everything. :-)
> 
> ---
> Diese E-Mail wurde von AVG auf Viren geprüft.
> http://www.avg.com
> 

You mostly need to remenber that trace(object, start, direction) use a 
start location and a direction. If you change the last value, you'll 
trace in different directions.

trace(Deck, <PosX, 1000, PosZ>, -y)


Post a reply to this message

From: Stephen
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 16:33:11
Message: <5abaaa87$1@news.povray.org>
On 27/03/2018 20:04, Alain wrote:
> Le 18-03-27 à 05:28, Sven Littkowski a écrit :
>> Thanks. I heard about that function, but have problems to handle it.
>>
>> But never mind, I have all coordinates of the entire scene in my mind. I
>> find it difficult to learn to work with so-called WYSIWYG editors, I
>> hand-code everything. :-)
>>
>> ---
>> Diese E-Mail wurde von AVG auf Viren geprüft.
>> http://www.avg.com
>>
> 
> You mostly need to remenber that trace(object, start, direction) use a 
> start location and a direction. If you change the last value, you'll 
> trace in different directions.
> 
> trace(Deck, <PosX, 1000, PosZ>, -y)


Even I can use it. ;-)

Use PosX, PosZ to describe a grid with a loop. And check that
   (vlength (Norm)!=0) and do some stuff


Hmm! I had an extra variable:

#declare Inter = trace (Trace_object_,< Pos_x, Pos_y, Pos_z >, z, Norm);

#if (vlength (Norm)!=0)


Then do some stuff.

#end


Alain probably knows and uses a more efficient way of coding it than I 
do/can.


-- 

Regards
     Stephen


Post a reply to this message

From: Sven Littkowski
Subject: Re: INVITATION: Join the Mississippi Paddle-Wheel Steamer!
Date: 27 Mar 2018 23:30:34
Message: <5abb0c5a$1@news.povray.org>
Thanks Alain and Stephen.   :-)

The item is what is to be checked for (like the name of a Declare union,
I would assume).

The first coordinate is from where the search ray is starting?

The second coordinate is towards which direction (destination) the
search ray is heading?

Norm contains the coordinates of a hit?


---
Diese E-Mail wurde von AVG auf Viren geprüft.
http://www.avg.com


Post a reply to this message

<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.