POV-Ray : Newsgroups : povray.windows : unzip the source code error : Re: unzip the source code error Server Time
2 May 2024 05:04:06 EDT (-0400)
  Re: unzip the source code error  
From: yaoyansi2
Date: 12 Feb 2009 21:10:00
Message: <web.4994d582385abde2c81c6e8a0@news.povray.org>
"triple_r" <nomail@nomail> wrote:
> "yaoyansi2" <yao### [at] yahoocomcn> wrote:
> > here is the code in POVRAY_ROOT\windows\codemax\source\editview.cpp:
> > L392:  if ( bMBCS )
> > L393:   { chTab = _T('^'); chSpace = _T('`'); }
> > L394:  else
> > L395:   { chTab = _T('?); chSpace = _T('?); }
>
> Correction (notice the extra quotes):
>
> > L395:   { chTab = _T('?'); chSpace = _T('?'); }
>
> At least that's what I get decompressing the source, albeit not on Windows.
>
>  - Ricky

Thanks for your reply,Ricky.
But how can I confirm whehter it is '?' or not?
Because I have met the similar problem in another project:
        charData[(i<<8)|((unsigned char)'?)].glyphMetrics.gmCellIncX=0;
        charData[(i<<8)|((unsigned char)'?)].glyphMetrics.gmCellIncX=0;
Fortunately, the source code of that porject can be viewed on web, and it is
found out to be:
        charData[(i<<8)|((unsigned char)'<')].glyphMetrics.gmCellIncX=0;
        charData[(i<<8)|((unsigned char)'>')].glyphMetrics.gmCellIncX=0;

So, Does the source code of pov-ray can be viewed on web? and how?


Post a reply to this message

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