All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.gov.nasa.worldwind.ogc.collada.ColladaTechnique Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */

package gov.nasa.worldwind.ogc.collada;

/**
 * Represents the COLLADA technique element and provides access to its contents.
 *
 * @author pabercrombie
 * @version $Id: ColladaTechnique.java 675 2012-07-02 18:47:47Z pabercrombie $
 */
public class ColladaTechnique extends ColladaAbstractParamContainer
{
    /**
     * Construct an instance.
     *
     * @param ns the qualifying namespace URI. May be null to indicate no namespace qualification.
     */
    public ColladaTechnique(String ns)
    {
        super(ns);
    }

    /**
     * Indicates the shader contained by the technique. Supported shaders are lambert and phong.
     *
     * @return The shader for this technique, or null if the shader is not set, or is not supported.
     */
    public ColladaAbstractShader getShader()
    {
        Object o = this.getField("lambert");
        if (o != null)
            return (ColladaAbstractShader) o;

        o = this.getField("phong");
        if (o != null)
            return (ColladaAbstractShader) o;

        // TODO handle other shaders
        return null;
    }

    /**
     * Indicates the value of the profile field.
     *
     * @return The value of the profile field, or null if the field is not set.
     */
    public String getProfile()
    {
        return (String) this.getField("profile");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy