POV-Ray : Newsgroups : povray.binaries.images : Dairy Barn (WIP) (27K and 35K) Server Time
11 Aug 2024 15:21:34 EDT (-0400)
  Dairy Barn (WIP) (27K and 35K) (Message 4 to 13 of 13)  
<<< Previous 3 Messages Goto Initial 10 Messages
From: Remy Closset
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 25 Mar 2004 02:39:25
Message: <40628cad$1@news.povray.org>
Nice balloon frame. But some details are not complete. Are missing among
other things, beams against the wind effect. And I think that rafters are
too thin, talking into account of the long range between two longitudinal
beams.
Very interesting work




news:40621316@news.povray.org...
> At the county library, I found building plans for a c. 1917 dairy barn.
>   The details of the framing are pretty good, but the rest is lacking
> (in the plans), so I'm going to have to do some research in the area.
> Luckily, we have hundreds of barns around here.
>
> To get all of the boards different, I had to use #macros for the
> repeated elements, and fetch the boards from random locations out in
> "wood space," rather than to use objects.  Is this the usual method, or
> is there a better one?
>
> Also, when I'm ready for it, does anyone have tips on shingles?  (The
> usual variety here at the time were cedar shakes, which are highly
> variable in length and width, so any kind of a regular pattern looks a
> bit artificial.)
>
> Dave Matthews
>


----------------------------------------------------------------------------
----






----------------------------------------------------------------------------
----


Post a reply to this message

From: Felbrigg
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 25 Mar 2004 05:37:34
Message: <4062b66e@news.povray.org>
Heres a little macro that should give you a head start.  Obviously the
shingle colors are random and you'll want to stick a proper texture in
there.  Also I havn't changed the height of each shingles only the width.

#include "colors.inc"
#include "textures.inc"
#include "functions.inc"
#include "shapes.inc"

camera  { location <10,0,-40> look_at <10,0,0> }

background { Blue }

light_source { <900, 560, -500> color White }
light_source { <-900, -560, -500> color White }
light_source { <900, 560, 500> color White }
light_source { <-900, -560, 500> color White }

#declare rStream = seed(0);

#macro
RowOfShingles(heightOfShingle,widthOfShingle,depthOfShingle,lengthOfRow)

        #declare currentLength = 0;
        #declare gapBetweenShingles = 0.1;

        union   {
                #while(currentLength < lengthOfRow)
                        #declare thisShingleWidth = widthOfShingle +
(rand(rStream)*(widthOfShingle/2));
                        box     {
                                <currentLength,0,0>,

<currentLength+thisShingleWidth,heightOfShingle,depthOfShingle>
                                texture {
                                        pigment {
                                                rgb
<rand(rStream),rand(rStream),rand(rStream)>
                                                }
                                        }
                                }
                        #declare currentLength = currentLength +
thisShingleWidth + gapBetweenShingles;

                #end
                }
#end

object  {
        RowOfShingles(3,2,0.5,40)
        }


Post a reply to this message

From: Dan P
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 25 Mar 2004 19:23:09
Message: <406377ed@news.povray.org>
"Dave Matthews" <dma### [at] nospamnet> wrote in message
news:40621316@news.povray.org...
> At the county library, I found building plans for a c. 1917 dairy barn.
>   The details of the framing are pretty good, but the rest is lacking
> (in the plans), so I'm going to have to do some research in the area.
> Luckily, we have hundreds of barns around here.
>
> To get all of the boards different, I had to use #macros for the
> repeated elements, and fetch the boards from random locations out in
> "wood space," rather than to use objects.  Is this the usual method, or
> is there a better one?
>
> Also, when I'm ready for it, does anyone have tips on shingles?  (The
> usual variety here at the time were cedar shakes, which are highly
> variable in length and width, so any kind of a regular pattern looks a
> bit artificial.)


Being from Wisconsin, I polled the local cows for their opinion. They all
love it! So do I! Can't wait to see future versions!

-- 
- Respectfully,
Dan
http://<broken link>


Post a reply to this message

From: Dave Matthews
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 26 Mar 2004 11:19:10
Message: <406457fe$1@news.povray.org>
Remy Closset wrote:
> Nice balloon frame. But some details are not complete. Are missing among
> other things, beams against the wind effect. And I think that rafters are
> too thin, talking into account of the long range between two longitudinal
> beams.
> Very interesting work
> 


Much was not complete, you're right. (See new post.) The Dimensions of 
the rafters and the longitudinal beams is as the plans specified (2"x6" 
rafters), but they do seem a might spindly, as you say.

Thanks

Dave Matthews


Post a reply to this message

From: Dave Matthews
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 26 Mar 2004 11:19:51
Message: <40645827$1@news.povray.org>
Thank you!  That should be a great start!

Dave Matthews


Post a reply to this message

From: Dave Matthews
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 26 Mar 2004 11:20:51
Message: <40645863$1@news.povray.org>
> Being from Wisconsin, I polled the local cows for their opinion. They all
> love it! So do I! Can't wait to see future versions!
>

Thanks!  See the new post, below (oops, I haven't posted it yet, please 
be patient.)

Dave Mattthews


Post a reply to this message

From: Jeremy M  Praay
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 26 Mar 2004 13:37:18
Message: <4064785e$1@news.povray.org>
I'm trying to do shingles for my old school (www.beantoad.com/wips.htm), but
I've had limited success, and I'm currently re-thinking the entire way that
I'm going about doing them.

If you come up with something for cedar shingles, I hope you'll share...
:-)

-- 
Jeremy
www.beantoad.com


"Dave Matthews" <dma### [at] nospamnet> wrote in message
news:40621316@news.povray.org...
> At the county library, I found building plans for a c. 1917 dairy barn.
>   The details of the framing are pretty good, but the rest is lacking
> (in the plans), so I'm going to have to do some research in the area.
> Luckily, we have hundreds of barns around here.
>
> To get all of the boards different, I had to use #macros for the
> repeated elements, and fetch the boards from random locations out in
> "wood space," rather than to use objects.  Is this the usual method, or
> is there a better one?
>
> Also, when I'm ready for it, does anyone have tips on shingles?  (The
> usual variety here at the time were cedar shakes, which are highly
> variable in length and width, so any kind of a regular pattern looks a
> bit artificial.)
>
> Dave Matthews
>


----------------------------------------------------------------------------
----






----------------------------------------------------------------------------
----


Post a reply to this message

From: Jeremy M  Praay
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 26 Mar 2004 13:40:04
Message: <40647904$1@news.povray.org>
Oh, sorry.  Beautiful work, by the way.  I love old barns!   I'll be very
interested to see this when it's done.  Hopefully, your projects don't take
several months like mine seem to...

-- 
Jeremy
www.beantoad.com


"Jeremy M. Praay" <jer### [at] questsoftwarecom> wrote in message
news:4064785e$1@news.povray.org...
> I'm trying to do shingles for my old school (www.beantoad.com/wips.htm),
but
> I've had limited success, and I'm currently re-thinking the entire way
that
> I'm going about doing them.
>
> If you come up with something for cedar shingles, I hope you'll share...
> :-)
>
> -- 
> Jeremy
> www.beantoad.com
>
>
> "Dave Matthews" <dma### [at] nospamnet> wrote in message
> news:40621316@news.povray.org...
> > At the county library, I found building plans for a c. 1917 dairy barn.
> >   The details of the framing are pretty good, but the rest is lacking
> > (in the plans), so I'm going to have to do some research in the area.
> > Luckily, we have hundreds of barns around here.
> >
> > To get all of the boards different, I had to use #macros for the
> > repeated elements, and fetch the boards from random locations out in
> > "wood space," rather than to use objects.  Is this the usual method, or
> > is there a better one?
> >
> > Also, when I'm ready for it, does anyone have tips on shingles?  (The
> > usual variety here at the time were cedar shakes, which are highly
> > variable in length and width, so any kind of a regular pattern looks a
> > bit artificial.)
> >
> > Dave Matthews
> >
>
>
> --------------------------------------------------------------------------
--
> ----
>
>
>
>
>
>
> --------------------------------------------------------------------------
--
> ----
>
>
>
>
>


Post a reply to this message

From: Dave Matthews
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 29 Mar 2004 08:40:40
Message: <40682758$1@news.povray.org>
Jeremy M. Praay wrote:
> Oh, sorry.  Beautiful work, by the way.  I love old barns!   

Thanks!

I'll be very
> interested to see this when it's done.  Hopefully, your projects don't take
> several months like mine seem to...
> 
Sorry to disappoint you, but.... ;-)

Dave Matthews


Post a reply to this message

From: Felbrigg
Subject: Re: Dairy Barn (WIP) (27K and 35K)
Date: 29 Mar 2004 09:33:33
Message: <406833bd$1@news.povray.org>
Heres some Shingles Code!  (Me Shingles 'aint 'arf painful guv'.  :-)

#include "colors.inc"
#include "textures.inc"
#include "functions.inc"
#include "shapes.inc"
#include "woods.inc"

camera  { location <10,0,-40> look_at <10,0,0> }

background { Blue }

light_source { <900, 560, -500> color White }
light_source { <-900, -560, -500> color White }
light_source { <900, 560, 500> color White }
light_source { <-900, -560, 500> color White }

#declare rStream = seed(0);

#macro
RowOfShingles(heightOfShingle,widthOfShingle,depthOfShingle,lengthOfRow,theT
exture)

        #declare currentLength = 0;
        #declare gapBetweenShingles = 0.1;

        union   {
                #while(currentLength < lengthOfRow)
                        #declare thisShingleWidth = widthOfShingle +
(rand(rStream)*(widthOfShingle/2));
                        box     {
                                <currentLength,0,0>,

<currentLength+thisShingleWidth,heightOfShingle
+rand(rStream),depthOfShingle>
                                texture {
                                        theTexture
                                        rotate
<rand(rStream)*360,rand(rStream)*360,rand(rStream)*360>

                                        }
                                }
                        #declare currentLength = currentLength +
thisShingleWidth + gapBetweenShingles;

                #end
                }
#end


#macro
Rows(heightOfShingle,widthOfShingle,depthOfShingle,lengthOfRow,theTexture,Ro
wCount)
        #declare myCount = 0;
        union   {
        #while(myCount <= RowCount )
                object  {
                        RowOfShingles(3,2,0.5,40,theTexture)
                        translate
<0,(heightOfShingle/2)*myCount,(depthOfShingle*myCount)*-1>
                        }
                #declare myCount = myCount + 1;
        #end
                }

#end

#declare myShingles = texture { pigment { P_WoodGrain1A color_map {
M_Wood9A } scale 4} };

object  {
        Rows(3,2,0.5,60,myShingles,12)
        rotate <200,0,0>
        translate <-10,20,0>
        }


Post a reply to this message

<<< Previous 3 Messages Goto Initial 10 Messages

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