Package javax.media.j3d

Examples of javax.media.j3d.SoundException


/*     */   }
/*     */
/*     */   public void fillDistanceAttenuation(float innerRadius, float maxConstantGain, float unitDistance, float unitGain, int curveType, Point2f[] distanceAttenuation)
/*     */   {
/* 103 */     if (distanceAttenuation == null) {
/* 104 */       throw new SoundException(J3dUtilsI18N.getString("DistanceAttenuation0"));
/*     */     }
/* 106 */     int length = distanceAttenuation.length;
/* 107 */     distanceAttenuation[0].x = innerRadius;
/* 108 */     distanceAttenuation[0].y = maxConstantGain;
/*     */
View Full Code Here

TOP

Related Classes of javax.media.j3d.SoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.