Re: reshaping figure [message #57106] |
Mon, 03 December 2007 09:23 |
Magician
Messages: 2 Registered: December 2007
|
Junior Member |
|
|
On Dec 3, 3:54 am, Andrew Cool <andrew.c...@dsto.defence.gov.au>
wrote:
> On Dec 3, 8:53 am, Magician <jadoo.d...@gmail.com> wrote:
>
>> Hi,
>> I have a code that generates a figure. This code is a black box for me
>> ( I am not allowed to modify it). But I am allowed to modify the
>> figure. I want to make this figure from rectangle to a square. Also
>> chane background to while from black.
>
>> Pleez suggest.
>> Thanks in advance
>
> Do what Captain James T. Kirk did in the Kobayashi Maru test- Cheat!
>
> Write your own procedure with the same name as the Black Box code, and
> place it right up front in
> your IDL Path. That way you change the figure and you haven't changed
> their Black box - you're just not
> using it... ;-))
>
> May the Force be with you - Whoops, Sorry wrong show..
>
> Andrew
I loved star trek when I was a kid. & I had made a small space-ship of
my own to navigate the unknown.
I am making one again now .....
|
|
|
Re: reshaping figure [message #57120 is a reply to message #57106] |
Mon, 03 December 2007 01:54  |
Andrew Cool
Messages: 219 Registered: January 1996
|
Senior Member |
|
|
On Dec 3, 8:53 am, Magician <jadoo.d...@gmail.com> wrote:
> Hi,
> I have a code that generates a figure. This code is a black box for me
> ( I am not allowed to modify it). But I am allowed to modify the
> figure. I want to make this figure from rectangle to a square. Also
> chane background to while from black.
>
> Pleez suggest.
> Thanks in advance
Do what Captain James T. Kirk did in the Kobayashi Maru test- Cheat!
Write your own procedure with the same name as the Black Box code, and
place it right up front in
your IDL Path. That way you change the figure and you haven't changed
their Black box - you're just not
using it... ;-))
May the Force be with you - Whoops, Sorry wrong show..
Andrew
|
|
|
Re: reshaping figure [message #57122 is a reply to message #57120] |
Sun, 02 December 2007 16:50  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Magician writes:
> I have a code that generates a figure. This code is a black box for me
> ( I am not allowed to modify it). But I am allowed to modify the
> figure. I want to make this figure from rectangle to a square. Also
> chane background to while from black.
How are you planning to "modify" the figure, if you
can't change the code that produces it?
You might try something like this. If the program that
produces the figure is written in a lousy enough way,
it might work:
!P.Background = FSC_Color('white')
!P.Color = FSC_Color('black')
!P.POSITION = Aspect(1.0)
You can find aspect.pro and fsc_color.pro on my
web page in the Coyote Library section.
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|