(X) Hide this Watch the recording of the latest SilverlightShow webcast 'Running Silverlight Outside the Browser and with Elevated Trust'.
Join our next live webinar session by Braulio Diez - Sketchflow in Real Scenarios, on Sept 29th, 8am - 9am PDT.
Learn More | Sign Up | More Webinars by SilverlightShow

Recommended

Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 10 results for PlaneProjection.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Jun 10, 2010 (3 months ago)
    Check out this step by step tutorial by Martin Krüger(SilverLaw) about how to make a ChildWindow rotate.

    This day I read a question at the Expression Blend and Scetchflow Forum about how to make a ChildWindow rotate. Interesting enough to build a quick and simple solution for that, including a rotation when the ChildWindow opens. So here it is. You can view an example and download the sourcecode of a sample application at the Expression Gallery. The Sourcecode is Silverlight 3, but the implementation for Silverlight 4 is similar.

    The following step by step tutorial builds a Silverlight 4 app.



  • 0 comments  /  posted by  LawBot  on  Jun 07, 2010 (3 months ago)
    I wrote a tutorial about a general solution to make a regular Silverlight 3 and 4 ChildWindow rotate. Quite straight forward. Additionally to the sourcecode of the contribution at the Expression Gallery the tutorial describes a reliable technique how to add a rotation at the Open procedure of a ChildWindow - ChildWindow.Show() -. This technique gives the opportunity to add every animation of your choice to the open procedure of a ChildWindow and therefore provides a solution to in full customize the open procedure.

    Have fun!

    Martin (LawBot / SilverLaw)

  • 0 comments  /  posted by  Silverlight Show  on  May 17, 2010 (4 months ago)
    This post of Antoni Dol is dedicated to QuoteFloat - an animation for TextBlock elements, inspired by the way the HTC Touch HD shows SMS Text messages.

    It moves the text up and rotates it at the same time resulting in a spiraling effect. It is done by giving the TextBlock elements a PlaneProjection each and animating the RotationY and GlobalOffsetY properties.

    The TextBlock elements are positioned below the bottom of the Canvas. The Canvas has a Clipping Mask so no one will see them until the animation starts.

  • 0 comments  /  posted by  Silverlight Show  on  Mar 17, 2010 (6 months ago)
    Andy Beaulieu is happy to find out that Silverlight 4 introduces GPU Acceleration to Perspective 3D Transforms.
    Perspective 3D Transforms were originally introduced in Silverlight 3, and allow 2D visual elements to be rotated in 3D space.[...] The problem in Silverlight 3 was that PlaneProjection’s were rendered using software instead of the video card (GPU), so you could quickly peg the CPU if you overused this transform effect.
  • 0 comments  /  posted by  Paul Yanez  on  Dec 31, 2009 (8 months ago)
    In this tutorial Paul Yanez demonstrates how to rotate an image left to right with a slider control.

    Steps
    1- Place an image on the stage
    2- on the image add a PlaneProjection, this can easily be done by editing the Projection / Rotation / Y in the properties panel
    3- name the PlaneProjection to x:Name=”rotater”[...]


  • 0 comments  /  posted by  Silverlight Show  on  Nov 16, 2009 (10 months ago)

    Using some Silverlight effects, CrocusGirl has created one very colorful animation.Image

    The Grid container is sometimes compared to the HTML Table; but  I’d rather consider the Grid as a matrix and with this in mind, I decided to add some matrix magic to it. [...] My initial plan was to create dynamic squares in each grid cell by moving along the edges of the grid until I would reach the center.

  • 0 comments  /  posted by  Ivan Dragoev  on  Aug 17, 2009 (more than a year ago)
    Tags: Gerard Leblanc , Plan eProjection , 3D , Silverlight , Carousels

    Gerard Leblanc continues his series of articles on plane projection for 3D, this time making carousels. Here are the first two parts: Part I and Part II:

    Let's make use of PlaneProjection to program other 3D effects : carousels in this post.
    First a simple one, to show how easy it is : just a few lines of code !

  • PlaneProjection for 3D effects. Part II : Flipping

    0 comments  /  posted by  Silverlight Show  on  Aug 11, 2009 (more than a year ago)
    The effect on which Gerard Leblanc focuses in this next post is flipping.Image You may also be interested in Gerard's previous post : PlaneProjection for 3D effects. Part I.

    As usual, let's start with the easiest one. Please, note that all images have a red circle in the upper-left corner : whenever displaying an image and playing with rotations, it's important to be sure the image is correctly displayed and not the inverted one (the "back side" or mirrored image if you prefer) and it's so easy to be confused without a mark.

  • 0 comments  /  posted by  Silverlight Show  on  Aug 03, 2009 (more than a year ago)
    Gerard Leblanc explains the need of implementing a plane projection in order to provide some 3D effects.

    Silverlight 3 is not fully but somewhat 3D. It means you cannot expect the capabilities of Direct3D (though some libraries from 3rd parties are in progress and promising) but there is enough today in SL3 to easily implement eye-catching 3D effects. In this serie, we will implement a bunch of them.

    But first, in this part one, the basis illustrated by two programs you can play with, to experiment. These two programs help you to visualize the rendering of perspective transforms. The first program helps in the understanding of the basic plane transformations while the second allows you to animate projections.

  • 0 comments  /  posted by  Silverlight Show  on  Jun 04, 2009 (more than a year ago)
    A while ago, Jaime Rodriguez cracked open Silverlight 3’s PlaneProjection feature and now he posts some basic intro plus all the advanced stuff that had not been documented yet.

    It is a long read, if you are already an expert, skip to the “3D scene” section to read the interesting details. The post comes with this application that I used to learn and illustrate the points.  Source for the app is here.