NGL@1.0.0-beta.7 Home Manual Reference Source Gallery
import BfactorColormaker from 'ngl/src/color/bfactor-colormaker.js'
public class | source

BfactorColormaker

Extends:

Colormaker → BfactorColormaker

Color by b-factor. The AtomProxy.bfactor property is used for coloring. By default the min and max b-factor values are used for the scale`s domain.

Name: bfactor

Example:

stage.loadFile( "rcsb://1crn" ).then( function( o ){
    o.addRepresentation( "ball+stick", { colorScheme: "bfactor" } );
    o.autoView();
} );

Constructor Summary

Public Constructor
public

Member Summary

Public Members
public
public
public

Method Summary

Public Methods
public

Inherited Summary

From class Colormaker
public
public
public
public
public
public
public
public
public
public

safe a atom color to an array

public

bondColor(bond: BondProxy, fromTo: Boolean): Integer

return the color for an bond

public

bondColorToArray(bond: BondProxy, fromTo: Boolean, array: Array | TypedArray, offset: Integer): Array

safe a bond color to an array

public

colorToArray(color: Integer, array: Array | TypedArray, offset: Integer): Array

safe a color to an array

public
public

positionColorToArray(coords: Vector3, array: Array | TypedArray, offset: Integer): Array

safe a color for coordinates in space to an array

public

volumeColorToArray(index: Integer, array: Array | TypedArray, offset: Integer): Array

safe a volume cell color to an array

Public Constructors

public constructor() source

Create a colormaker instance

Override:

Colormaker#constructor

Public Members

public bfactorScale source

public domain source

Override:

Colormaker#domain

public scale source

Override:

Colormaker#scale

Public Methods

public atomColor() source