Visual Object for horizontal and vertical flip

Source: Internet
Author: User
Visual Object for horizontal and vertical flip

Previous/next article 15:38:26/personal classification: as3

View (1988)/comment (5)/score ( 0 / 0 )

There are several ways to implement object flip: (Here we only talk about simple flip, horizontal or vertical flip, only consider results, not the flip process, because some flip processes are very complexAlgorithm)

 

1. Directly fromFlashMenu.

 

Select a visual object from the menu "modify"-"deformation"-"vertical flip" or "modify"-"deformation"-"Horizontal flip" to flip the object.

 

2. UseScalexAndScaleyAttribute(As2This method is often used.).

 

Implement horizontal flip:Displayobject. scalex =-displayobject. scalex;

Implement vertical flip:Displayobject. scaley =-displayobject. scaley;

 

3. ExploitationMatrixClass.

 

Horizontal flip:

Function fliphorizontal (DSP: displayobject): void

{

VaR matrix: matrix = DSP. Transform. matrix;

Matrix. A =-1;

// Matrix. Tx = DSP. Width + DSP. X;

DSP. Transform. Matrix = matrix;

}

 

Vertical flip

Function flipvertical (DSP: displayobject): void

{

VaR matrix: matrix = DSP. Transform. matrix;

Matrix. d =-1;

// Matrix. Ty = DSP. height + DSP. Y;

DSP. Transform. Matrix = matrix;

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.