Write a method similar to Program that mirrors from back to front.
What will be an ideal response?
```
public void mirrorBackToFront ( )
{
int length = this.getLength ( ) ; // save the length
int mirrorPoint = l eng th / 2 ; // mirror around this
int value = 0 ; // hold the current value
// loop from 0 to mirrorPoint
for ( int i = 0 ; i < mirrorPoint ; i++) f
value = this.getSampleValueAt ( length ¡ 1 ¡ i ) ;
this.setSampleValueAt ( i , value ) ;
}
}
```
You might also like to view...
Describe what you might do if you suspect a problem is caused by a corrupted Windows system file.
What will be an ideal response?
Why should a power supply be rated about 30 percent higher than expected needs?
What will be an ideal response?
In January 2004, the U.S. ____ law went into effect.?
A. ?CAN-SPAM B. ?END-SPAM C. ?CRAM-SPAM D. ?SCRAM
Java applications begin execution at method _____________.
Fill in the blank(s) with the appropriate word(s).