transform

MsiTran Error 110

I'm trying to apply a transform to my msi file. I've created the transform using Orca (new transform->generate transform) and when I run it with MsiTrans I get Error 110. Error Opening Database. Does anyone know what this is or how to fix it? Thanks ...

Name space in XSLT

Below is the example file <?xml version='1.0' encoding='UTF-8'?> <Document xmlns='urn:iso:std:iso:20022:tech:xsd:pain.002.001.02' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'&gt; <pain.002.001.02> ------------ ------------- ------------- </pain.002.001.02> </Document> Below is the XSLT Transformation code : <xsl:transf...

AS3 - Why is my transform.matrix3D null?

I have a class named Box that extends Sprite and when I'm trying to access his transform.matrix3D property (indeed is the matrix3D property from an Transform object) this returns me null. Why? package some.place { // ... imports ... public class Box extends Sprite { public function Box() {} public function ...

Xsl transformation question.

Hi, All, Next question: I have "InputDoc" xml document and xslt file in order to transform into other "OutputDoc" xml document. You can find examples xslt and xml documents below. <?xml version="1.0" encoding="UTF-8"?> <InputDoc> <InputCollection> <InputItem> <InputValue>Value_1</InputValue> </InputItem> </InputCollec...

What is the difference between -moz-transform and -moz-transform-origin ?

What is the difference between -moz-transform and -moz-transform-origin ? ...

How to use scale with -moz-transform ?

Any body has a Good example showing how to use scale with -moz-transform ? ...

What are the coordinates of a display object that has been transformed with a PerspectiveProjection?

I'm currently transforming some objects to make them appear far away using a PerspectiveTransform. This works well, but I have no way of knowing where on the screen the object is displayed. The x and y coordinates are the coordinates of the object if it were at z=0. How can I compute the display coordinates of my component? ...

Anti-aliasing while animating "transform" property on CALayer?

I have a CALayer with a circle drawn to it at its final size. I want to animate the circle in, such that it starts at 1% scale and finishes at 100%. Right now the animation is not very smooth because the edges flicker while it's scaling. At the final size the circle looks right. I'm wondering if there's a way to have anti-aliasing during...

CSS3 animation on transform: rotate. Way to fetch current deg of the rotating element?

Hi everybody, i am working on a html5 interface wich uses drag and drop. While i am dragging an element, the target gets a css-class, which makes it bidirectionally rotate due to a -webkit-animation. @-webkit-keyframes pulse { 0% { -webkit-transform: rotate(0deg); } 25% { -webkit-transform:rotate(-10deg); } 75% { -webkit-...

Segfault on using transform on a vector of pointers to an abstract class

I experience a segfault on the following code: I have an abstract class A with a method virtual bool Ok() const; Now, I have the following vector std::vector<A*> v; filled with several pointers to existing child objects. I want to accumulate the results of the Ok() method as follows: std::vector<bool> results; std::transform(v.be...

iPhone navigation bar height remains short in portrait orientation

My app's root view controller supports any orientation but user can navigate to another view controller that supports only landscape orientation. The basic problem is that regardless of the device's actual physical orientation, when the user pops back to root view controller, the navigation bar has a height that would be appropriate fo...

iPhone, How do I rotate an UIImageView around a point using Core Animation and CATransform3D?

This is what I want to do: (1) (2) | / | / | / | / |/ * (3) I want to move an UIImageView represented by a clock pin (width:9px, height 73px) from position (1) to position (2) around point (3) which is one end of the image. I tried to set the anchorpoint to (0,0) or to set the image center to point (517,177) which is the *(3) ...

How to get rotations from btTransform to D3DXMatrixRotationYawPitchRoll ?

I need to get rotation data from Bullets rigid body world transform ( getWorldTransform() ) to the suitable format to pass to D3DXMatrixRotationYawPitchRoll function to generate the rotation matrix for DirectX. My solutions structure is built up this way so I need to pass the data this way. You can provide other solutions, maybe I can s...

MSBuild transform not evaluating wildcards.

I am having some trouble with a MSBuild file that I am trying to compile some custom libraries. <PropertyGroup> <FullVersion>10.8.0.0</FullVersion> </PropertyGroup> <ItemGroup> <LibsToBuild Include=".\Lib1"> <Bin>bin\*.*</Bin> <Project>Library 1</Project> <Build>ReleaseNoProtect</Build> <V...

Rotate in Opera

I just downloaded the latest version of Opera. Is there a way to make my elements (div tags) rotate with CSS3? ...

How do you perform OpenGL ES 2.0 shader matrix multiplication?

I'm trying to transform vertices with a shader program, but i can't understand the results. I prepared a projection, a view(trans), and model(trans) matrices: First i have a vertex shader function of: viewproj * position. In a Objective-C program i start with identity multiplicated by a translation and projection matrices and then unifo...

UIImagePickerController cameraViewTransform acts differently in iOS 4

Hi folks, I upgraded both my iPhone and SDK to iOS 4.0.1 and now my App doesn't run the same way it was running in iOS 3.x. My App uses the UIImagePickerController with a custom cameraOverlayView (which I'll suppress in this post). The main point is that I need to see the iphone camera in fullscreen mode. To go straight to the problem, ...

How to read individual '-webkit-transform' values in JavaScript?

Webkit's blog post from last year on 3D transforms explains the various transform 'functions' that can be used in the -webkit-transform property. For example: #myDiv { -webkit-transform: scale(1.1) rotateY(7deg) translateZ(-1px); } My question: how do you access individual values in JavaScript? When you read the webkitTransform prop...

transforming a matrix into a vector along its diagonals

hi guys, im not not a programmer, i just need to solve something numerically in matlab. i need a function to make the following transformation for any square matrix: from row 1: 1 2 3 row 2: 4 5 6 row 3: 7 8 9 to 1 4 2 7 5 3 8 6 9 ie write the matrix in a vector along its diagonals from left to top right. any ideas please? i r...

Changing namespace for XML file in XSL Translation

So I have an input file that uses my company's namespace in the default namespace (xmlns="companyURL") but I want my output file to use something other than the default namespace (xmlns:cmp="companyURL"). So I construct my file using the cmp namespace, but then I want to copy some of the inner elements: <xsl:element name="cmp:container"...