Tabnine Logo
ModelCesiumWriter
Code IndexAdd Tabnine to your IDE (free)

How to use
ModelCesiumWriter
in
cesiumlanguagewriter

Best Java code snippets using cesiumlanguagewriter.ModelCesiumWriter (Showing top 12 results out of 315)

origin: AnalyticalGraphicsInc/czml-writer

/**
*  

Copies this instance and returns the copy.


* @return The copy.
*/
@Override
public ModelCesiumWriter clone() {
  return new ModelCesiumWriter(this);
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code colorBlendAmount} property. The {@code colorBlendAmount} property defines the color strength when {@code colorBlendMode} is {@code MIX}. A value of 0.0 results in the model's rendered color while a value of 1.0 results in a solid color, with any value in-between resulting in a mix of the two. If not specified, the default value is 0.5.

*/
@Nonnull
public final DoubleCesiumWriter openColorBlendAmountProperty() {
  openIntervalIfNecessary();
  return this.<DoubleCesiumWriter> openAndReturn(getColorBlendAmountWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code colorBlendMode} property. The {@code colorBlendMode} property defines the mode to use for blending between {@code color} and the model's color. If not specified, the default value is HIGHLIGHT.

*/
@Nonnull
public final ColorBlendModeCesiumWriter openColorBlendModeProperty() {
  openIntervalIfNecessary();
  return this.<ColorBlendModeCesiumWriter> openAndReturn(getColorBlendModeWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code minimumPixelSize} property. The {@code minimumPixelSize} property defines the approximate minimum pixel size of the model regardless of zoom. If not specified, the default value is 0.0.

*/
@Nonnull
public final DoubleCesiumWriter openMinimumPixelSizeProperty() {
  openIntervalIfNecessary();
  return this.<DoubleCesiumWriter> openAndReturn(getMinimumPixelSizeWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code maximumScale} property. The {@code maximumScale} property defines the maximum scale size of the model. This is used as an upper limit for {@code minimumPixelSize}.

*/
@Nonnull
public final DoubleCesiumWriter openMaximumScaleProperty() {
  openIntervalIfNecessary();
  return this.<DoubleCesiumWriter> openAndReturn(getMaximumScaleWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code incrementallyLoadTextures} property. The {@code incrementallyLoadTextures} property defines whether or not the model can be rendered before all textures have loaded. If not specified, the default value is {@code true}.

*/
@Nonnull
public final BooleanCesiumWriter openIncrementallyLoadTexturesProperty() {
  openIntervalIfNecessary();
  return this.<BooleanCesiumWriter> openAndReturn(getIncrementallyLoadTexturesWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code color} property. The {@code color} property defines the color to blend with the model's rendered color. If not specified, the default value is white.

*/
@Nonnull
public final ColorCesiumWriter openColorProperty() {
  openIntervalIfNecessary();
  return this.<ColorCesiumWriter> openAndReturn(getColorWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code gltf} property. The {@code gltf} property defines the URI of a <a href="https://github.com/KhronosGroup/glTF">glTF</a> model. For broadest client compatibility, the URI should be accessible via Cross-Origin Resource Sharing (CORS). The URI may also be a <a href="https://developer.mozilla.org/en/data_URIs">data URI</a>. This value is required.

*/
@Nonnull
public final UriCesiumWriter openGltfProperty() {
  openIntervalIfNecessary();
  return this.<UriCesiumWriter> openAndReturn(getGltfWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code heightReference} property. The {@code heightReference} property defines the height reference of the model, which indicates if the position is relative to terrain or not. If not specified, the default value is NONE.

*/
@Nonnull
public final HeightReferenceCesiumWriter openHeightReferenceProperty() {
  openIntervalIfNecessary();
  return this.<HeightReferenceCesiumWriter> openAndReturn(getHeightReferenceWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

/**
*  
Opens and returns the writer for the {@code distanceDisplayCondition} property. The {@code distanceDisplayCondition} property defines the display condition specifying at what distance from the camera this model will be displayed.

*/
@Nonnull
public final DistanceDisplayConditionCesiumWriter openDistanceDisplayConditionProperty() {
  openIntervalIfNecessary();
  return this.<DistanceDisplayConditionCesiumWriter> openAndReturn(getDistanceDisplayConditionWriter());
}
origin: AnalyticalGraphicsInc/czml-writer

  public cesiumlanguagewriter.ModelCesiumWriter invoke() {
    return new ModelCesiumWriter(ModelPropertyName);
  }
}, false);
origin: AnalyticalGraphicsInc/czml-writer

@Override
protected CesiumPropertyWriter<ModelCesiumWriter> createPropertyWriter(String propertyName) {
  return new ModelCesiumWriter(propertyName);
}
cesiumlanguagewriterModelCesiumWriter

Javadoc

Writes a Model to a CesiumOutputStream. A Model is a 3D model.

Most used methods

  • <init>
    Initializes a new instance.
  • getColorBlendAmountWriter
    Gets the writer for the colorBlendAmount property. The returned instance must be opened by calling t
  • getColorBlendModeWriter
    Gets the writer for the colorBlendMode property. The returned instance must be opened by calling the
  • getColorWriter
    Gets the writer for the color property. The returned instance must be opened by calling the CesiumEl
  • getDistanceDisplayConditionWriter
    Gets the writer for the distanceDisplayCondition property. The returned instance must be opened by c
  • getGltfWriter
    Gets the writer for the gltf property. The returned instance must be opened by calling the CesiumEle
  • getHeightReferenceWriter
    Gets the writer for the heightReference property. The returned instance must be opened by calling th
  • getIncrementallyLoadTexturesWriter
    Gets the writer for the incrementallyLoadTextures property. The returned instance must be opened by
  • getMaximumScaleWriter
    Gets the writer for the maximumScale property. The returned instance must be opened by calling the C
  • getMinimumPixelSizeWriter
    Gets the writer for the minimumPixelSize property. The returned instance must be opened by calling t
  • getNodeTransformationsWriter
    Gets the writer for the nodeTransformations property. The returned instance must be opened by callin
  • getRunAnimationsWriter
    Gets the writer for the runAnimations property. The returned instance must be opened by calling the
  • getNodeTransformationsWriter,
  • getRunAnimationsWriter,
  • getScaleWriter,
  • getShadowsWriter,
  • getShowWriter,
  • getSilhouetteColorWriter,
  • getSilhouetteSizeWriter,
  • openAndReturn,
  • openColorBlendAmountProperty,
  • openColorBlendModeProperty

Popular in Java

  • Running tasks concurrently on multiple threads
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • setScale (BigDecimal)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now