Go to the documentation of this file.
33 _min_uv.set(0.0, 0.0);
34 _max_uv.set(0.0, 0.0);
35 _wrap_u = EggTexture::WM_unspecified;
36 _wrap_v = EggTexture::WM_unspecified;
44 _margin(copy._margin),
47 _x_size(copy._x_size),
48 _y_size(copy._y_size),
49 _min_uv(copy._min_uv),
50 _max_uv(copy._max_uv),
51 _wrap_u(copy._wrap_u),
59 void TexturePosition::
61 _margin = copy._margin;
64 _x_size = copy._x_size;
65 _y_size = copy._y_size;
66 _min_uv = copy._min_uv;
67 _max_uv = copy._max_uv;
68 _wrap_u = copy._wrap_u;
69 _wrap_v = copy._wrap_v;
78 register_factory(get_class_type(), make_TexturePosition);
113 me->
fillin(scan, manager);
133 _wrap_u = (EggTexture::WrapMode)scan.
get_int32();
134 _wrap_v = (EggTexture::WrapMode)scan.
get_int32();
int32_t get_int32()
Extracts a signed 32-bit integer.
virtual void write_datagram(BamWriter *writer, Datagram &datagram)
Fills the indicated datagram up with a binary representation of the current object,...
static void register_with_read_factory()
Registers the current object as something that can be read from a Bam file.
A class to retrieve the individual data elements previously stored in a Datagram.
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
static WritableFactory * get_factory()
Returns the global WritableFactory for generating TypedWritable objects.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
Base class for objects that can be written to and read from Bam files.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
This represents a particular position of a texture within a PaletteImage.
PN_float64 get_float64()
Extracts a 64-bit floating-point number.
TypeHandle is the identifier used to differentiate C++ class types.
An instance of this class is passed to the Factory when requesting it to do its business and construc...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void add_int32(int32_t value)
Adds a signed 32-bit integer to the datagram.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
virtual void fillin(DatagramIterator &scan, BamReader *manager)
This internal function is intended to be called by each class's make_from_bam() method to read in all...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void fillin(DatagramIterator &scan, BamReader *manager)
Reads the binary data from the given datagram iterator, which was written by a previous call to write...
void add_float64(PN_float64 value)
Adds a 64-bit floating-point number to the datagram.
void parse_params(const FactoryParams ¶ms, DatagramIterator &scan, BamReader *&manager)
Takes in a FactoryParams, passed from a WritableFactory into any TypedWritable's make function,...