blob: 43b436b49cdb14acbc861210d5b87994627bd13e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Pierre Allard,
* Regent L'Archeveque,
* Sebastien Gemme - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.common.math.impl;
import javax.vecmath.Matrix4d;
public class Matrix4x4CustomImpl extends Matrix4x4Impl {
@Override
public Matrix4d asMatrix4d() {
double[] values = new double[] { getM00(), getM01(), getM02(), getM03(), getM10(), getM11(), getM12(), getM13(),
getM20(), getM21(), getM22(), getM23(), getM30(), getM31(), getM32(), getM33() };
return new Matrix4d(values);
}
} // Matrix4x4Impl