one.empty3.testscopy.tests.Chien Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of empty3-library-3d Show documentation
Show all versions of empty3-library-3d Show documentation
3D rendering engine. Plus modelling. Expected glsl textures 3d and 2d rendering3D primitives, and a lot of scenes' samples to test.+ Game Jogl reworked, Calculator (numbers and vectors). Java code parser implementation starts (<=1.2)
The newest version!
/*
*
* * Copyright (c) 2024. Manuel Daniel Dahmen
* *
* *
* * Copyright 2024 Manuel Daniel Dahmen
* *
* * Licensed under the Apache License, Version 2.0 (the "License");
* * you may not use this file except in compliance with the License.
* * You may obtain a copy of the License at
* *
* * http://www.apache.org/licenses/LICENSE-2.0
* *
* * Unless required by applicable law or agreed to in writing, software
* * distributed under the License is distributed on an "AS IS" BASIS,
* * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* * See the License for the specific language governing permissions and
* * limitations under the License.
*
*
*/
package one.empty3.testscopy.tests;
import one.empty3.library.*;
import one.empty3.library.core.nurbs.CourbeParametriquePolynomialeBezier;
import one.empty3.library.core.nurbs.FctXY;
import one.empty3.library.core.tribase.Tubulaire3;
import java.awt.*;
public class Chien extends RepresentableConteneur {
public Chien() {
Tubulaire3[] patte = new Tubulaire3[4];
Point3D tete = new Point3D(0., 1., 0.); //tête
Point3D queue = new Point3D(1., 0., 1.); // queue
Sphere tetes = new Sphere(tete, 0.8); //sphère
tetes.texture(new TextureCol(Color.RED));
queue.texture(new TextureCol(Color.BLACK));
for (int i = 0; i < 4; i++) {
patte[i] = new Tubulaire3();
patte[i].getSoulCurve().getElem().getCoefficients().getData1d().clear();
patte[i].texture(new TextureCol(Color.ORANGE));
((FctXY) (patte[i].getDiameterFunction().getElem())).setFormulaX("0.6");
}
Tubulaire3 corps;
corps = new Tubulaire3();
corps.getSoulCurve().getElem().getCoefficients().getData1d().clear();
corps.getSoulCurve().getElem().getCoefficients().setElem(P.n(0., 1., 0.));
corps.getSoulCurve().getElem().getCoefficients().setElem(P.n(1., 1., 0.));
corps.texture(new TextureCol(Color.ORANGE));
((FctXY) (corps.getDiameterFunction().getElem())).setFormulaX("1.5");
// patte AVANT
// §1
((CourbeParametriquePolynomialeBezier) (patte[0].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(0., -1., 0.), 0);
((CourbeParametriquePolynomialeBezier) (patte[0].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(0., 1., 0.), 1); //patte avant
((CourbeParametriquePolynomialeBezier) (patte[0].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(0., 1., -1.), 2);
((CourbeParametriquePolynomialeBezier) (patte[0].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(0., -1., -1.), 3);
// patte arrière
// §2
((CourbeParametriquePolynomialeBezier) (patte[2].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(1., -1., 0.), 0);
((CourbeParametriquePolynomialeBezier) (patte[2].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(1., 1., 0.), 1); //patte arrière #1
((CourbeParametriquePolynomialeBezier) (patte[2].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(1., 1., -1.), 2);// patte avant #2
((CourbeParametriquePolynomialeBezier) (patte[2].getSoulCurve().getElem())).getCoefficients().setElem(new Point3D(1., -1., -1.), 3);
//1,0,0 //etx queue.
add(corps);
add(tetes);
for (int i = 0; i < 4; i += 2) {
add(patte[i]);
}
}
public static void main(String[] args) {
new Thread(new TestChien()).start();
}
}