Reader XI and Vertex Colors

Hi all,
in Reader XI vertex colors aren't multiplied with diffuse colors anymore, like in previous reader versions.
Instead diffuse colors are replaced by vertex colors when used.
Vertex colors with diffuse textures still work fine.
Greetings,
Chuck

Dave Merchant wrote:
... in a math-model scenario where vertex colors represent a fourth parameter on a 3D surface, it is absolutely proper that the VC-generated texture ignores lighting, so the true 'value' is displayed.
Remember that only VC-colored surfaces behave this way - if you want some part of a scene reacting to lighting and shadows, don't give that node any VCs.
If a 3D surface ignores lighting, the three other parameters (x,y,z) become hard to assess.
Compare the examples
http://www2.iaas.msu.ru/tmp/test_texture.pdf and http://www2.iaas.msu.ru/tmp/test_vertex_color.pdf .
When you move around the model, it is much easier to get the shape of the surface when it responds to lighting.
In VC case it is impossible to see if the mono-colored end of the tube is open or closed, for example.
The stability and simplicity of VCs are really valuable features (for example, the textured model looks differently in Software and OpenGL renderes, while the VCed one looks the same), but mandatory ignoring of lighting is more of a disservice in the interactive viewer, where user is expected to be able (with default GUI) to change camera position, lighting and (with JavaScript or view dictionaries) move parts of the model around.
On the other hand, this thread started with complaint about how Adobe does _not_ care about the stabilty of results achieved with VCs. So 3D PDFs can not be relied upon as the only way to convey important color information in any case (but can serve as an additional tool, esp. for insruction). There is a long way from PDF-E to PDF-A.
As not giving node VCs - it is possible if you control the whole drawing block of an application.
If you try to create a PRC or U3D output driver for an existing program, you may find that driver API deals with VCed primitives. And such design is quite reasonable, since the authors of the built-in OpenGL viewer of such a program did RTFM glColorMaterial, so know how to drive both diffuse and emissive color with VC.
PS. My _guess_ is that logic has nothing to do with the support for vertex colors in Adobe 3D viewer.
I suspect that when Adobe U3D viewer was first introduced, it was based on Right Hemisphere 3D viewer, that did not support VCs, so minimal VC support was hacked in, just to have some. The introduction of PRC could not change much, since even in the PRC format spec VCs look like an afterthought. And we are going live with that ad hoc code, since declared commitment of Adobe to open 3D standards is not translated into action when it comes to allocating 3D programmers time (if they still have any such programmers left). /* Hope to be wrong. */

Similar Messages

  • HP 1610v error message: Remove and check color cartridge

    In the middle of printing, my HP 1610v All-In-One PSC just stopped and displayed an error message reading "remove and check color cartridge". I did.... but couldn't really determine what I'm supposed to be looking for though. Ink cartridge is full, clean, and seems fine. Not only can I not figure out what I'm supposed to do to fix it....I can't do ANYTHING. no printer menu access, no printing with only the black cartridge, only an orange exclamation point that ceaselessly blinks at me.
    I've tried unplugging and waiting 20 seconds
    I've put 3 different color cartridges in and the error message only went away with the EMPTY cartridge...which, of course, I couldn't print with!
    Please Help ASAP!!
    Thanks!

    Hi there iceefrost,
    This article should cover the issue you are experiencing. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Read yellow color from red and green colors

    hi everyone
    need help in extracting yellow color from red and green colors (RGB space).
    before that, the B channel was set to zero.
    can display RG and CMYK together (like Adobe Photoshop)?
    thanks.
    mySiti

    hi everyone
    need help in extracting yellow color from red and green colors (RGB space).
    before that, the B channel was set to zero.
    can display RG and CMYK together (like Adobe Photoshop)?
    thanks.
    mySiti

  • My tx is so slow, the web cam is not working, the screen freezes and got color distortions

    - My tx is so slow, and heats up very fast... so i think that the advance is not working properly
    - the web cam is not working, since the 3th time iused... when i try to use it with my msn... got freezed, then y try ending the process and doesnt work, y     have to restart it but it stay just on logging off... and do nothing more... so i have to switch off directly from the power button
    - The screen freezes... some thimes the screen got freezed... and got color distortions too... so i have to to switch off again directly from the power button
    i was thinking that it was a software problem... but i restore my lap and it doesnt work cuz it still being with the same problems... so lately im thinking that its a hardware problem... i call to technical support from mexico... but they can do nothing for me cuz i bought my lap at circuitcity from el paso... and that store close a few months ago... so i need help before de warrantie expires...
    This is the second time that my lap gives me problems, last time I made the change at the store but this time it will be impossible cuz is now closed...
    that is why I seek your help...
    i will be grateful if you answer in Spanish because my English is not very good...
    thankyou so much...

    If your warranty has not yet run out get it serviced, now!  All of the comments seem to indicate that it is the motherboard>

  • Multi color gradient for touch and selected color of spark mobile list

    multi color gradient for touch and selected color of spark mobile list
    how to get dat?

    or how about a bitmap as the background for the touch and selected color for the items in a list.

  • I just downloaded Pages. When typing on a blank document, I am unable to highlight certain words.  My daughter usesbitbfor homework and needs to highlight her spelling words.  I've read disucssions and it says gonto the a and enter fill and cg

    I just started using Pages and am trying to figure out how I can highlight certain words in sentences.  I have read some of the discussions and they have said to go to the "a" on the top bar.  When using a blank document, the letter "a" doesn't show up and there isn't an option to fill in or use shadowing.  Help!

    At the top of the screen in Page there is an "I" next to the Media Icon. If you tap that "I" icon - you bring up a menu that has Style as one of the options. Tap Style and you can change the color of the text and use all of the preinstalled Styles available in the app.
    If you swipe all the way to the bottom of the Styles menu- there is a Text Options listed. Tap on that and you can select different sizes, fonts, and text colors.

  • How to Include More Than One Font and Font Color Within a Fluid Grid Div Tag?

    Using CSS code, I can make all the words within a fluid grid div tag the same font, font size, and font color, but how do I make a few of the words different?

    You can style the basic text and heading selectors with CSS:
    p { }
    h1 { }
    h2 { }
    h3 { }
    h4 { }
    etc...
    And you can make classes:
    .red {color:red}
    .highlight {background-color:yellow}
    Then apply classes to your text or sections of it using the HTML properties panel.
    <div>
         <p>This is a default paragraph style.</p>
         <p class="red">This is red.</p>
         <p class="highlight">This is highlighted.</p>
         <p>Default style with <span class="red highlight">red, highlighted text</span> and normal text.</p>
    </div>
    Incidentally, this will work in any layout.
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • How to change the background and font color of a particular row in table

    Hi,
       i need to change the background and font color of a particular row. I am using textview as table columns. I tried to do it using semanticColor property of textview  but the font color get changed for the whole column. But i want to change the color of a particular row only.
       If anybody knows please help me(give an example if possible).
           Thanks and regards.
            Pankaj Kumar.

    Hi Pankaj,
    In your data source context node (context node which is bound to dataSource property of Table UI elemennt) do following:
    If data source node is model node: create a value node under data source node, cardinality 1..1, selection 1..1, singleton false. In this new node add value attribute and set property readOnly=true, calculated=true, property com.sap.ide.webdynpro.uielementdefinitions.TextViewSemanticColor .
    If datasource node is value add value attribute and set property readOnly=true, calculated=true, property com.sap.ide.webdynpro.uielementdefinitions.TextViewSemanticColor.
    In calculated getter method put your color calculation depending on conditions, like:
    return <condition>
      ? WDTextViewSemanticColor.CRITICAL
      : WDTextViewSemanticColor.STANDARD;
    Bind new created attribute with property semanticColor of textview.
    Best regards, Maksim Rashchynski.

  • Lightroom preview and JPG color difference.

    I'm a Photographer. Using Windows Vista and a brand new Dell 24" HC LCD monitor. Freshly calibrated with a MonacoOPTIX calibration kit. The profile generated is my default monitor profile. After calibration, I looked at some of my past photographic work and the colors looked very saturated to me. And the images all looked a bit brighter as well. I was working in an uncalibrated environment before so I figured thats why my pictures looked different. I shoot in RAW (Canon) and I always (and still do) export all of my work as sRGB.
    Yesterday I was working on a personal image and noticed my preview in Lightroom looks a bit different than the output in JPG. I verified my settings and I am outputting to sRGB. I'm expecting my preview and and the JPG to match almost exactly.
    See the screenshot here: http://lifesharephoto.smugmug.com/photos/256400141_Qy7np-L-1.jpg
    Notice the web version is much brighter and more staurated?
    Why would that be?

    Lou, you are using a non-managed browser. No matter how much you calibrate, it will not show you correct color, even if you use sRGB. This is because your monitor's gamut will differ slightly from sRGB. IE7 is not color managed, even though Microsoft promised it would be a long time ago. Currently only Safari is color managed. Firefox 3.0 beta can color manage if you enable it in the settings. There is unfortunately nothing you can do about it and you have to realize that even if you do everything right, your audience will see different colors. They will all cluster around what you saw in Lightroom though and you should absolutely not trust your IE7 display, even if you calibrate. Only your monitor has that specific response. Other people will see more saturated greens, or more saturated blues, or the opposite. There is no predicting. It will all cluster more or less around sRGB though.

  • Adobe Reader 9.0 background color

    I just downloaded Adobe Reader 9.0. The default background color is black. How can I change that to a different color? I'm not talking about the background color when in "full screen" mode; I just mean when the reader is open and no document is open, or when a document is open but not in full screen mode.

    Believe it or not, the single reason why I'm staying with Adobe Reader 8 and do not upgrade to Adobe Reader 9 is too dark background of the main application window (not the full-screen mode, since that color is adjustable). In Reader 8, the color was gray, and in Reader 9, the color is dark gray which results in too high contrast compared to the usually white document background.
    Is there a way to change this color, even if editing a registry key is needed?

  • Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Here's what I've found on the issue:
    Pantone color definitions have changed (coinciding with CS6) — they are now "Pantone+" (I think that's what they're called). The "+" apparently means they're now LAB colors. Lab colors are not properly displayed in Preview (or in Finder previews) — they display as black (as far as I can tell, in all circumstances). I'm sure it's a tad more complicated than that, but that's the gist.
    Now the bad news — nobody seems to know anything about a fix or workaround (unless you convert your PDFs to process — this might be a fix for sending to clients). It causes issues for me in AI files — being able to view them in the finder (with previews) is a HUGE time saver for my workflow... when they're all black, not so much.
    In my chat with a director of product dev at Adobe, they placed the responsibility to fix on Apple (assuming Apple wants to support Pantone color definitions in their OS).

  • Background and forground color

    Hi,
    I'd like to set the bg color and fg color on screen, form and item.
    Is there any way to make it?
    Thanks.

    I will try polish!Good choice!
    MihaiDo you have any other cool solution?

  • Background and foreground colors can be interchanged using which command

    hi
    background and foreground colors can be interchanged using which command

    <b>Background and foreground colors can be interchanged using the command Format Inverse.</b>

  • How do I copy a document from pages into email (not pdf) and have color and format the same as the document created in pages?

    How do I copy an entire document from pages into email (not pdf) and have color and format the same as the document created in pages?

    Pages ’09 v4.3 and Pages v5.2.2 are entirely different document architectures. Consequently, copying and pasting a table from Pages ’09 circumvents the customary translation process  that would occur if you opened that Pages ’09 document in Pages v5.
    Make a backup copy of the Pages ’09 document that has the table in it, and then open this document in Pages v5.2.2. The table is translated into Pages v5 document format and displayed correctly. You can even select this Pages v5.2.2 table, and then copy/paste it into another Pages v5.2.2 document with accurate results.

  • The display has lines and the color is strange.

    The Retina display has lines and the color is very light when I turn on iPad mini. When I woke up and turned it on this morning, it happened. I have no idea what happened since the iPad mini has been gotten no physical damage.

    Hi:
    I would try a hard reset of the notebook.
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01684768&cc=us&dlc=en&lc=en&jumpid=reg_r1002_us​...
    If that doesn't work and considering all of the other steps you took to remedy the issue, I would say the BIOS update wrecked something permanently.

Maybe you are looking for

  • How to create a block key default for documents created by MIRO?

    Hi All, How to create a block key (BSEG-ZLSPR) default for documents created by MIRO? Could anyone tell me? Thanks Gandalf

  • How do I play one Podcast at a time?

    My old IPod played one Podcast at a time. My new 160 Classic plays them continually. Is there a way to get my new IPod to play one Podcast at a tme?

  • 2715 Error when installing a newer version of iTunes

    I have been trying to solve this problem for about 10 months and I finally solved it tonight. I thought I would post the solution just in case anyone hit the same error, especially since it appears to be rare. Here is the error: “The installer has en

  • How to compile KVM in a linux with a arm processor

    Helow my uneversity bought a IMXL card with linux, the processor of this card is one of the arm porcessors family, i need to know how can i compile the kvm for construct aplications in this embedded system, do i need to download the kvm sources from

  • Making a map-style blowup section?

    Hello! I'm fairly new to Illustrator; I've been playing with it for a few days and I'm getting the hang of it, but I can't seem to figure one particular thing out.  I'm working on a vector map and I'd like to be able to take a section of it and blow