POV-Ray : Newsgroups : povray.binaries.images : Do I relly need a raytracer... Server Time
1 Oct 2024 09:23:10 EDT (-0400)
  Do I relly need a raytracer... (Message 4 to 13 of 13)  
<<< Previous 3 Messages Goto Initial 10 Messages
From: Richard Morton
Subject: Re: Do I relly need a raytracer...
Date: 12 Sep 2000 07:45:25
Message: <39BE6C63.E984D84C@hotmail.removethisbit.com>
I assume that Blubber is meant to be an anagram of Bubbler or is there some
other significance to the word ?


Post a reply to this message

From: Karl Pelzer
Subject: Re: Do I relly need a raytracer...
Date: 12 Sep 2000 12:27:48
Message: <39BE59C4.473360CF@t-online.de>
Richard Morton wrote:
> 
> I assume that Blubber is meant to be an anagram of Bubbler or is there some
> other significance to the word ?

'Blubber' is the German 'comic noise' for bubbling fluids. So Bubbler is
not so far away from it ;-)

Karl


Post a reply to this message

From: Ron Parker
Subject: Re: Do I relly need a raytracer...
Date: 13 Sep 2000 22:09:01
Message: <slrn8s0di7.1tl.ron.parker@fwi.com>
On Mon, 11 Sep 2000 21:36:16 +0200, Karl Pelzer wrote:
>To all others: I'm looking fo a font in 'Austin Powers' style or kind of
>60's style that fits the mood.

The canonical "70s" font is Bocklin (sometimes spelled Boecklin)

-- 
Ron Parker   http://www2.fwi.com/~parkerr/traces.html
My opinions.  Mine.  Not anyone else's.


Post a reply to this message

From: Karl Pelzer
Subject: Re: Do I relly need a raytracer...
Date: 14 Sep 2000 09:43:46
Message: <39C0D655.58E3951A@t-online.de>
Thanks Ron!

But I wasn't able to find it (yet)

Karl


Post a reply to this message

From: Karl Pelzer
Subject: Re: Do I relly need a raytracer...
Date: 14 Sep 2000 09:59:13
Message: <39C0D9F4.4A5DAF63@t-online.de>
Ron Parker wrote:

> The canonical "70s" font is Bocklin (sometimes spelled Boecklin)

I just saw on Ray Larabies web site that this font isn't free. And I've
no software it is associated with. 8-[

Karl


Post a reply to this message

From: Christophe Bouffartigue
Subject: Re: Do I relly need a raytracer...
Date: 14 Sep 2000 10:08:50
Message: <39C0DBF1.E5D68263@nanterre.marelli.fr>
Karl Pelzer wrote:
> 
> Ron Parker wrote:
> 
> > The canonical "70s" font is Bocklin (sometimes spelled Boecklin)
> 
> I just saw on Ray Larabies web site that this font isn't free. And I've
> no software it is associated with. 8-[
> 
> Karl

Look at http://www.fontaddict.com/archive.html and search for "Action"
font (freeware), maybe this one could suit yours needs...

Bouf.


Post a reply to this message

From: Ron Parker
Subject: Re: Do I relly need a raytracer...
Date: 14 Sep 2000 10:26:27
Message: <slrn8s1omm.244.ron.parker@fwi.com>
On Thu, 14 Sep 2000 16:00:20 +0200, Karl Pelzer wrote:
>Ron Parker wrote:
>
>> The canonical "70s" font is Bocklin (sometimes spelled Boecklin)
>
>I just saw on Ray Larabies web site that this font isn't free. And I've
>no software it is associated with. 8-[

http://bibliofile.mc.duke.edu/gww/fonts/Bocklin/Bocklin.html

-- 
Ron Parker   http://www2.fwi.com/~parkerr/traces.html
My opinions.  Mine.  Not anyone else's.


Post a reply to this message

From: Karl Pelzer
Subject: Re: Do I relly need a raytracer...
Date: 15 Sep 2000 02:33:36
Message: <39C1C308.5C9C708E@t-online.de>
Ron Parker wrote:
> 
> http://bibliofile.mc.duke.edu/gww/fonts/Bocklin/Bocklin.html
> 
> --
> Ron Parker   http://www2.fwi.com/~parkerr/traces.html
> My opinions.  Mine.  Not anyone else's.

Thanks Ron. But this font fits to the time between 1900 and 1920. In the
meantime I found two fancy fonts that fit to the 1960's.
I'll post a new version when I changed my character placing routine.
Every character can be placed according to its dimensions. The effect is
that I can manipulate every single character of a string.
The problem lies in one of the new fonts. The characters can be
overlapping that means an "a" can be placed under the bow of a
preceeding "P".
I'll have to think about it...

Karl


Post a reply to this message

From: Ron Parker
Subject: Re: Do I relly need a raytracer...
Date: 15 Sep 2000 09:44:06
Message: <slrn8s4ajs.2q7.ron.parker@fwi.com>
On Fri, 15 Sep 2000 08:34:48 +0200, Karl Pelzer wrote:
>Ron Parker wrote:
>> 
>> http://bibliofile.mc.duke.edu/gww/fonts/Bocklin/Bocklin.html
>> 
>> --
>> Ron Parker   http://www2.fwi.com/~parkerr/traces.html
>> My opinions.  Mine.  Not anyone else's.
>
>Thanks Ron. But this font fits to the time between 1900 and 1920. In the
>meantime I found two fancy fonts that fit to the 1960's.
>I'll post a new version when I changed my character placing routine.
>Every character can be placed according to its dimensions. The effect is
>that I can manipulate every single character of a string.
>The problem lies in one of the new fonts. The characters can be
>overlapping that means an "a" can be placed under the bow of a
>preceeding "P".
>I'll have to think about it...

That's called kerning.  You can determine how much kerning is applied to
a pair; I posted at length on this subject deep in a thread over in 
povray.programming.  I even wrote a couple macros.

// Find the advance width of character C in font F
#macro WidthWithSpacing( C, F )
  #local T=text {ttf F concat("|",C,"|") 1 0}
  #local W1=max_extent(T).x-min_extent(T).x;
  #local T=text {ttf F "||" 1 0}
  (W1-max_extent(T).x+min_extent(T).x)
#end

// Find the width of the glyph for character C in font F
#macro WidthNoSpacing( C, F )
  #local T=text {ttf F C 1 0}
  (max_extent(T).x-min_extent(T).x)
#end

// Find the kern for characters A and B from font F
#macro Kern( A, B, F )
  (WidthWithSpacing( concat(A, B), F)-WidthWithSpacing(A,F)
   -WidthWithSpacing(B,F))
#end

-- 
Ron Parker   http://www2.fwi.com/~parkerr/traces.html
My opinions.  Mine.  Not anyone else's.


Post a reply to this message

From: Karl Pelzer
Subject: Re: Do I relly need a raytracer...
Date: 15 Sep 2000 14:50:10
Message: <39C26FA3.803EA0BC@t-online.de>
Thanks Ron.
Seems like I don't need to think about it anymore because you did it
before 8-)
I'll try it out when I'm back from holidays. (yep! I'm leaving in a few
minutes)

Karl


Post a reply to this message

<<< Previous 3 Messages Goto Initial 10 Messages

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