Tagged Questions

Shadows can refer to the background shading often used to produce a 3D effect. Alternatively it is a Keyword in VB.NET and has an OOP meaning of redefining base methods.

learn more… | top users | synonyms

22
votes
10answers
20k views

Shadows vs. Overrides in VB.Net

Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?
8
votes
3answers
1k views

Shadows vs Overloads in VB.NET

When we have new in C#, that personally I see only as a workaround to override a property that does not have a virtual/overridable declaration, in VB.NET we have two "concepts" Shadows and Overloads. ...
3
votes
1answer
211 views

Inner Shadow Text with Silverlight

I've been trying for the last several hours to find a way to create inner shadows for text. Essentially I want to create effects similar to this in Silverlight: Inner text shadow with CSS I was able ...
3
votes
3answers
48 views

css shadows not applied correctly in bottom of images

I'm working on an homepage with this html/css: http://jsfiddle.net/2qWYf/5/ I can't figure out why the shadows I applied to the images are start to showing some pixels under the image bottom line. ...
3
votes
2answers
582 views

Is there an easy way to get shadows in OpenGL?

I recently created a landscape code which I full understand, and added some diffuse lighting to the scene. However to my disappointment there was no shadows. I looked around the web for hours, looking ...
3
votes
1answer
367 views

Shadowing events in .NET

In VB.NET there is a keyword 'shadows'. Let's say I have a base class called 'Jedi' and a derived class called 'Yoda' which inherits from 'Jedi'. If I declare a method in 'Jedi' called 'ForcePush' ...
2
votes
2answers
90 views

Difference between Shadows (VB.NET) and New (C#)

Simple question from a simple-minded: What are the differences between the Shadows keyword in VB.NET and the New keyword in C#? (regarding method signatures of course).
2
votes
2answers
98 views

Transparent shadows in IE

I have the following code, which makes a box with rounded corners and shadow. It should be compatible with all browsers and it really is, but the thing is I need transparent shadow and IE doesn't ...
2
votes
2answers
254 views

Standard POSIX read shadowed by a read method with different signature

I have a C++ File class with read function, that is supposed to read whole contents of a file (just like Python does) into a buffer. However, when I tried to call read function from unistd.h, I get: ...
2
votes
2answers
1k views

shadow mapping multitexture

There is this tutorial about shadow mapping: http://www.paulsprojects.net/tutorials/smt/smt.html Ok, but I did not realize how to make a scene with multitexture. If in the third pass of shadow ...
1
vote
2answers
151 views

Omnidirectional Shadow Mapping

I've done environment mapping with cubemaps and shadow mapping in one direction with a 2D texture, but using a cube map for shadow mapping in all directions is giving me a lot of trouble. I recently ...
1
vote
0answers
226 views

Create a bezier path using an image's transparency, use for CALayer's shadowPath

Is there an easy way to use an image's transparency to create a bezier path? I'm trying to optimize an animation of a number of CALayers. But I get huge slowdowns when I add a drop shadow using the ...
1
vote
3answers
89 views

Is it any way possible to do text shadows with current IE9 beta CSS?

So text shadows in FF and Chrome are grate. For example I have simple web page for simple video streaming server.. no shadows in IE9 for me( my css code is like p{color: #000;text-shadow: 0px 1px ...
1
vote
1answer
535 views

iPhone game 2d shadows

We're in the process of creating an iPhone game using cocos2d. We're trying to layer several sprites on top of each other and have them cast shadows. Right now the shadows are rendered as sprites ...
0
votes
1answer
51 views

CSS shadow change side

-moz-box-shadow: inset 3px 3px rgba(0,0,0,0.5); -webkit-box-shadow: inset 3px 3px rgba(0,0,0,0.5); box-shadow: inset 3px 3px rgba(0,0,0,0.5); this makes an inset shadow on the top, and left. I ...
0
votes
1answer
181 views

How to create a shadow in HTML, CSS & JS that doesn't accept clicks, but let it hit behind that layer?

How to create a shadow in HTML, CSS & JS that doesn't accept clicks, but let it hit behind that layer? I have a some windows in my JS+HTML application. As every window has drop shadows, when ...
0
votes
3answers
221 views

Shadow mapping- multiple sources

I'm looking at writing some code that performs shadow mapping, in DX9. The sample code that I've got only shadow maps from one light source. Is it performance viable to shadow map from more than one ...
0
votes
1answer
37 views

CSS Shadows for IE Browsers?

Can anyone show me or direct me in the right direction for placing CSS shadows for IE Browsers. Here is my current code: -moz-box-shadow: 0px 0px 6px #666; -webkit-box-shadow: 0px ...
0
votes
2answers
703 views

Drop Shadow Center Column Website web page

How can I add a drop shadow effect to a website that has one center column? Some examples of what I mean: lala.com mint.com
0
votes
1answer
822 views

Shadows via shadowmaps and other textures - how to combine? OpenGL

Good day. I draw a scene with shadows using shadow maps method (when we're rendering scene from light point of view to retrieve depth buffer, making shadow texture and projecting it on the scene, ...
0
votes
1answer
7k views

iPhone SDK: How to Draw a Rounded Rectangle With a Semi-Transparent Gradient and a Drop Shadow

I'm experimenting with drawing on the iPhone by manually creating parts of the UI for my application (In this case a graph). Essentially, I want to draw a rectangle with rounded corners, a ...