r3tool

r3tool

Class

real/windows/r3tool.h

Library

r3win

Description:

Base class for tool buttons. These classes are responsible for creating interactors.

See Also

oops/r3button.h

Super Class

r3Button

R3CLID_BUTTON

JavaScript

r3Tool

Class Identifier

R3CLID_TOOL - 187

Methods

ACTION, INSTALLTOOLCLASS, ENUMTOOLCLASSES, DOUPDATE, INSTALLTOOLGROUP, SHOWMESSAGE, SETCONTROLORIENTATIO, SETSTATUSORIENTATION, MAKEDEFAULTS, ENUMGROUPSANDTOOLS, WRITEDEFAULTS, READDEFAULTS, SETDEFAULTS, GETDEFAULTS, GETLONGDESCRIPTION, GETDESCRIPTION, CREATEINTERACTOR, GETREPLACEOPT,

Attributes

Layer, UnitConverter, Interactor, Active, Identifier,

Registration

int R3RegisterToolClass(R3APP *app);

R3TOOLM_ACTION

Method

ACTION

Identifier

R3TOOLM_ACTION

Return

R3BOOL, must be true.

JavaScript

rc = obj.ACTION();

Description

Executed when a tool is selected. This method is defined by the base class but it is up to the sub classes to implement this. Tool must call R3WGM_MAPCHANGES of its tool button with this method. When the tool is clicked by the user, this method is called. The tool must then send the NEWINTERACTOR method to the layer class.

R3TOOLCM_INSTALLTOOLCLASS

Method

INSTALLTOOLCLASS

Identifier

R3TOOLCM_INSTALLTOOLCLASS

Return

R3BOOL, true if succeeded

Param 1:

R3CLID, class id of the tool group

Param 3:

R3CLID, class id of the tool

JavaScript

rc = obj.INSTALLTOOLCLASS(p1, p3);

Description

Class message. Install new tool for the toolbar.

R3TOOLCM_ENUMTOOLCLASSES

Method

ENUMTOOLCLASSES

Identifier

R3TOOLCM_ENUMTOOLCLASSES

Param 3:

R3TAG*, R3RA_TargetObject, R3RA_TargetMethod

JavaScript

obj.ENUMTOOLCLASSES(p3);

Description

Enumerates all installed tools. The given 'targetobject' is called with two parameters: p1 = (R3CLID)group, p3 = (R3CLID)tool.

R3TOOLM_DOUPDATE

Method

DOUPDATE

Identifier

R3TOOLM_DOUPDATE

JavaScript

obj.DOUPDATE();

Description

Optimized update. It is up to the sub classes to implement the method.

R3TOOLCM_INSTALLTOOLGROUP

Method

INSTALLTOOLGROUP

Identifier

R3TOOLCM_INSTALLTOOLGROUP

Return

R3BOOL, true if succeeded.

Param 1:

R3CLID, class id of the group

Param 3:

char*, symbolic name for the group.

JavaScript

rc = obj.INSTALLTOOLGROUP(p1, p3);

Description

Class method. Install new tool group.

R3TOOLM_SHOWMESSAGE

Method

SHOWMESSAGE

Identifier

R3TOOLM_SHOWMESSAGE

Param 3:

char*, message to be shown

JavaScript

obj.SHOWMESSAGE(p3);

Description

Show info message

R3TOOLM_SETCONTROLORIENTATIO

Method

SETCONTROLORIENTATIO

Identifier

R3TOOLM_SETCONTROLORIENTATIO

JavaScript

obj.SETCONTROLORIENTATIO();

Description

Sets the orientation of the second line

R3TOOLM_SETSTATUSORIENTATION

Method

SETSTATUSORIENTATION

Identifier

R3TOOLM_SETSTATUSORIENTATION

JavaScript

obj.SETSTATUSORIENTATION();

Description

Sets the orientation of the status line

R3TOOLM_MAKEDEFAULTS

Method

MAKEDEFAULTS

Identifier

R3TOOLM_MAKEDEFAULTS

JavaScript

obj.MAKEDEFAULTS();

Description

Reads the default options from the interactor. Defaults are used when the interactor is activated.

R3TOOLCM_ENUMGROUPSANDTOOLS

Method

ENUMGROUPSANDTOOLS

Identifier

R3TOOLCM_ENUMGROUPSANDTOOLS

Param 1:

R3CLID, group id

Param 2:

char*, group name

Param 3:

R3CLID, tool id

JavaScript

obj.ENUMGROUPSANDTOOLS(p1, p2, p3);

Description

Enumerates groups and tools

R3TOOLM_WRITEDEFAULTS

Method

WRITEDEFAULTS

Identifier

R3TOOLM_WRITEDEFAULTS

Return

R3BOOL, true if succeeded

JavaScript

rc = obj.WRITEDEFAULTS();

Description

Write default tool options to a file.

R3TOOLM_READDEFAULTS

Method

READDEFAULTS

Identifier

R3TOOLM_READDEFAULTS

Return

R3BOOL, true if succeeded

JavaScript

rc = obj.READDEFAULTS();

Description

Read default tool options from a file.

R3TOOLM_SETDEFAULTS

Method

SETDEFAULTS

Identifier

R3TOOLM_SETDEFAULTS

Return

R3BOOL, true if succeeded

JavaScript

rc = obj.SETDEFAULTS();

Description

Set current defaults options to the tool's interactor. This method is defined by the r3tool base class but it is up to the sub class to implement this.

R3TOOLM_GETDEFAULTS

Method

GETDEFAULTS

Identifier

R3TOOLM_GETDEFAULTS

Return

R3BOOL, true if succeeded

JavaScript

rc = obj.GETDEFAULTS();

Description

Read all interactor's options. These are used as default options next time the tool is activated. This method is defined by the r3tool base class but implemented by the sub classes.

R3TOOLCM_GETLONGDESCRIPTION

Method

GETLONGDESCRIPTION

Identifier

R3TOOLCM_GETLONGDESCRIPTION

Return

char*, address of the tool description

JavaScript

rc = obj.GETLONGDESCRIPTION();

Description

returns description text for the tool. This string can be used in menus and other GUI elements allowing more descriptive texts.

R3TOOLCM_GETDESCRIPTION

Method

GETDESCRIPTION

Identifier

R3TOOLCM_GETDESCRIPTION

Return

char*, address of the tool description

JavaScript

rc = obj.GETDESCRIPTION();

Description

returns description text for the tool. This string can be used in menus and other GUI elements allowing more descriptive texts.

R3TOOLCM_CREATEINTERACTOR

Method

CREATEINTERACTOR

Identifier

R3TOOLCM_CREATEINTERACTOR

Param 3:

R3OBJ*, current layer

JavaScript

obj.CREATEINTERACTOR(p3);

Description

creates interactor for the tool class

R3TOOLM_GETREPLACEOPT

Method

GETREPLACEOPT

Identifier

R3TOOLM_GETREPLACEOPT

Return

R3BOOL, TRUE if the new tool should replace the current tool. FALSE if the new tool should be pushed on top of the tool stack.

JavaScript

rc = obj.GETREPLACEOPT();

Description

Check if the new tool should replace the current tool.

Layer

Attribute

Layer

Identifier

R3TOOLA_Layer

JavaScript type

Object

C type

R3OBJ*

Description

layer

Syntax


jsobj.SetLayer(value);
value = jsobj.GetLayer();


R3OBJ* value = ...;
R3SetAttrs(r3obj, R3TOOLA_Layer, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3TOOLA_Layer, &value, R3TAG_END);

UnitConverter

Attribute

UnitConverter

Identifier

R3TOOLA_UnitConverter

JavaScript type

Object

C type

R3OBJ*

Description

unit converter

Syntax


jsobj.SetUnitConverter(value);
value = jsobj.GetUnitConverter();


R3OBJ* value = ...;
R3SetAttrs(r3obj, R3TOOLA_UnitConverter, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3TOOLA_UnitConverter, &value, R3TAG_END);

Interactor

Attribute

Interactor

Identifier

R3TOOLA_Interactor

JavaScript type

Integer

C type

R3INT

Description

current interactor

Syntax


value = jsobj.GetInteractor();


R3INT value;
R3GetAttrs(r3obj, R3TOOLA_Interactor, &value, R3TAG_END);

Active

Attribute

Active

Identifier

R3TOOLA_Active

JavaScript type

Boolean

C type

R3BOOL

Description

active tool

Syntax


jsobj.SetActive(value);
value = jsobj.GetActive();


R3BOOL value = ...;
R3SetAttrs(r3obj, R3TOOLA_Active, value, R3TAG_END);
R3BOOL value;
R3GetAttrs(r3obj, R3TOOLA_Active, &value, R3TAG_END);

Identifier

Attribute

Identifier

Identifier

R3TOOLA_Identifier

JavaScript type

Integer

C type

R3INT

Description

unique identifier for interactor-tool binding

Syntax


jsobj.SetIdentifier(value);
value = jsobj.GetIdentifier();


R3INT value = ...;
R3SetAttrs(r3obj, R3TOOLA_Identifier, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3TOOLA_Identifier, &value, R3TAG_END);

Some reasonable limitations for the toolbar.

R3TOOL_MAXTOOLCOUNT
R3TOOL_MAXGROUPCOUNT

codes for R3TOOLM_SETCONTROLORIENTATION and R3TOOLM_SETSTATUSORIENTATION

R3TOOLORIENTATION_VERTICAL
R3TOOLORIENTATION_HORIZONTAL

Public strings

R3TOOLS_CANNOTGETDEFAULTS
R3TOOLS_CANNOTSETDEFAULTS
R3TOOLS_PRIVATE


r3appobj *

Tags

Tags

R3TOOLA_CtrlWindow_removed
R3TOOLA_StatusWindow_removed
<sect6> <title>p3airbto</title>

p3airbto

Class

plugins/tools/3dpaint/p3airbto.h

Library

r33dp

Description:

Airbrush 3D painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Airbrushpaintingtool

Class Identifier

R3CLID_AIRBRUSHPAINTINGTOOL - 726

Methods

Attributes

Registration

int R3RegisterAirbrushPaintToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3anglemeasuretool</title>

r3anglemeasuretool

Class

plugins/objects/measure/r3anglemeasuretool.h

Library

r3measure

Description:

Angle measure tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Anglemeasuretool

Class Identifier

R3CLID_ANGLEMEASURETOOL - 2583

Methods

Attributes

Registration

int R3RegisterAngleMeasureToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>a3rottol</title>

a3rottol

Class

real/windows/a3rottol.h

Library

r3win

Description:

Animation rotation tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Animrotationtool

Class Identifier

R3CLID_ANIMROTATIONTOOL - 1693

Methods

Attributes

</sect6>
<sect6> <title>r3atmoto</title>

r3atmoto

Class

plugins/tools/maps/r3atmoto.h

Library

r3map

Description:

Atmosphere tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Atmospheretool

Class Identifier

R3CLID_ATMOSPHERETOOL - 1650

Methods

Attributes

Registration

int R3RegisterAtmosphereToolClass(R3APP *app);

</sect6>
<sect6> <title>r3mavertool</title>

r3mavertool

Class

plugins/tools/maps/r3mavertool.h

Library

r3map

Description:

Average MAP Tool Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Averagemaptool

Class Identifier

R3CLID_AVERAGEMAPTOOL - 1707

Methods

Attributes

Registration

int R3RegisterAverageMapToolClass(R3APP *app);

</sect6>
<sect6> <title>b3andnottool</title>

b3andnottool

Class

real/windows/b3andnottool.h

Library

r3win

Description:

Boolean AND NOT (Remove) Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Booleanandnottool

Class Identifier

R3CLID_BOOLEANANDNOTTOOL - 1892

Methods

Attributes

</sect6>
<sect6> <title>b3andtool</title>

b3andtool

Class

real/windows/b3andtool.h

Library

r3win

Description:

Boolean AND (Intersection) Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Booleanandtool

Class Identifier

R3CLID_BOOLEANANDTOOL - 1893

Methods

Attributes

</sect6>
<sect6> <title>b3bndrytool</title>

b3bndrytool

Class

real/windows/b3bndrytool.h

Library

r3win

Description:

Boolean Boundary Tool. Creates a solid object from select surfaces.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Booleanboundarytool

Class Identifier

R3CLID_BOOLEANBOUNDARYTOOL - 1894

Methods

Attributes

</sect6>
<sect6> <title>b3ortool</title>

b3ortool

Class

real/windows/b3ortool.h

Library

r3win

Description:

Boolean OR (Union) Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Booleanortool

Class Identifier

R3CLID_BOOLEANORTOOL - 1891

Methods

Attributes

</sect6>
<sect6> <title>f3boolto</title>

f3boolto

Class

real/windows/f3boolto.h

Library

r3win

Description:

Boolean operation construction tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Booleantool

Class Identifier

R3CLID_BOOLEANTOOL - 676

Methods

Attributes

</sect6>
<sect6> <title>f3cbackd</title>

f3cbackd

Class

real/windows/f3cbackd.h

Library

r3win

Description:

Camera Backdrop Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Camerabackdroptool

Class Identifier

R3CLID_CAMERABACKDROPTOOL - 272

Methods

Attributes

Registration

int R3RegisterCameraBackdropToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3camtol</title>

r3camtol

Class

real/windows/r3camtol.h

Library

r3win

Description:

Camera Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Cameratool

Class Identifier

R3CLID_CAMERATOOL - 334

Methods

Attributes

Registration

int R3RegisterCameraToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3tocarriage</title>

r3tocarriage

Class

plugins/objects/carriage/r3tocarriage.h

Library

r3carriage

Description:

Tool button for creating carriage objects

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Carriagetool

Class Identifier

R3CLID_CARRIAGETOOL - 2444

Methods

Attributes

</sect6>
<sect6> <title>p3cirtol</title>

p3cirtol

Class

plugins/tools/3dpaint/p3cirtol.h

Library

r33dp

Description:

Circle 3D painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Circlepaintingtool

Class Identifier

R3CLID_CIRCLEPAINTINGTOOL - 1457

Registration

int R3RegisterCirclePaintingToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3cobendtool</title>

r3cobendtool

Class

plugins/objects/pointdisplacer/r3cobendtool.h

Library

r3pointdisplacer

Description:

Tool for bend deformer

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Cobendtool

Class Identifier

R3CLID_COBENDTOOL - 1899

Methods

Attributes

Registration

int R3RegisterCoBendToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3cogrouptool</title>

r3cogrouptool

Class

real/windows/r3cogrouptool.h

Library

r3win

Description:

Group tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Cogrouptool

Class Identifier

R3CLID_COGROUPTOOL - 1742

Methods

Attributes

Registration

int R3RegisterConstructGroupToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3cogtol</title>

r3cogtol

Class

real/windows/r3cogtol.h

Library

r3win

Description:

Center of Gravity Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Cogtool

Class Identifier

R3CLID_COGTOOL - 1675

Methods

Attributes

Registration

int R3RegisterCOGToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3contol</title>

r3contol

Class

plugins/objects/constraint/r3contol.h

Library

r3constr

Description:

Constrain tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Constrainttool

Class Identifier

R3CLID_CONSTRAINTTOOL - 1426

Methods

Attributes

Registration

int R3RegisterConstraintToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3copathletool</title>

r3copathletool

Class

plugins/objects/pointdisplacer/r3copathletool.h

Library

r3pointdisplacer

Description:

Tool for path deformer

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Copathleveltool

Class Identifier

R3CLID_COPATHLEVELTOOL - 1917

Methods

Attributes

Registration

int R3RegisterCoPathLevelToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>p3copiertool</title>

p3copiertool

Class

plugins/tools/3dpaint/p3copiertool.h

Library

r33dp

Description:

Copier tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Copiertool

Class Identifier

R3CLID_COPIERTOOL - 1705

Registration

int R3RegisterCopierToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3xsect</title>

f3xsect

Class

real/windows/f3xsect.h

Library

r3win

Description:

Crossection Freeform Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Crosssecttool

Class Identifier

R3CLID_CROSSSECTTOOL - 324

Methods

Attributes

Registration

int R3RegisterCrossSectionToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>p3curtol</title>

p3curtol

Class

plugins/tools/3dpaint/p3curtol.h

Library

r33dp

Description:

CURVE 3D painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Curvepaintingtool

Class Identifier

R3CLID_CURVEPAINTINGTOOL - 1462

Registration

int R3RegisterCurvePaintingToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3curtol</title>

f3curtol

Class

real/windows/f3curtol.h

Library

r3win

Description:

Tool which converts any object to given number of nurbs curves

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Curvetool

Class Identifier

R3CLID_CURVETOOL - 394

Methods

Attributes

Registration

int R3RegisterCurveToolClass(R3APP *app);

super

</sect6>
<sect6> <title>f3trim</title>

f3trim

Class

real/windows/f3trim.h

Library

r3win

Description:

Map nurbs curve to trim curve.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Curvetotrim

Class Identifier

R3CLID_CURVETOTRIM - 689

Methods

Attributes

</sect6>
<sect6> <title>r3demato</title>

r3demato

Class

plugins/tools/maps/r3demato.h

Library

r3map

Description:

Default Mapping Tool Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Defaultmappingtool

Class Identifier

R3CLID_DEFAULTMAPPINGTOOL - 1286

Methods

Attributes

Registration

int R3RegisterDefaultMappingToolClass(R3APP *app);

</sect6>
<sect6> <title>r3dgrtol</title>

r3dgrtol

Class

real/windows/r3dgrtol.h

Library

r3win

Description:

Distant gravity tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Distantgravitytool

Class Identifier

R3CLID_DISTANTGRAVITYTOOL - 1451

Methods

Attributes

Registration

int R3RegisterDistantGravityToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3escan</title>

f3escan

Class

real/windows/f3escan.h

Library

r3win

Description:

Image vectorization tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Edgescantool

Class Identifier

R3CLID_EDGESCANTOOL - 799

Methods

Attributes

Registration

int R3RegisterEdgeScanToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3extrud</title>

f3extrud

Class

real/windows/f3extrud.h

Library

r3win

Description:

Sweep surface construction tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Extrudetool

Class Identifier

R3CLID_EXTRUDETOOL - 327

Methods

BEVELTYPE,

Attributes

Registration

int R3RegisterFreeformExtrudeToolClass(R3APP *app);

R3EXTRUDETM_BEVELTYPE

Method

BEVELTYPE

Identifier

R3EXTRUDETM_BEVELTYPE

JavaScript

obj.BEVELTYPE();

Description

for internal mapchanges


r3appobj *

</sect6>
<sect6> <title>p3eyedto</title>

p3eyedto

Class

plugins/tools/3dpaint/p3eyedto.h

Library

r33dp

Description:

Eye dropper

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Eyedroppertool

Class Identifier

R3CLID_EYEDROPPERTOOL - 1604

Registration

int R3RegisterEyeDropperToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3fantol</title>

r3fantol

Class

real/windows/r3fantol.h

Library

r3win

Description:

Tool for creating fans (for fluid dynamics)

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Fantool

Class Identifier

R3CLID_FANTOOL - 1446

Methods

Attributes

Registration

int R3RegisterFanToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3fillet</title>

f3fillet

Class

real/windows/f3fillet.h

Library

r3win

Description:

Fillet surface construction tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Fillettool

Class Identifier

R3CLID_FILLETTOOL - 235

Methods

Attributes

Registration

int R3RegisterFreeformFilletToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3fnttol</title>

r3fnttol

Class

real/windows/r3fnttol.h

Library

r3win

Description:

Font tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Fonttool

Class Identifier

R3CLID_FONTTOOL - 588

Methods

Attributes

Registration

int R3RegisterFontToolClass(R3APP *app);

Tags

Tags

R3FNTTOLCA_FontLabels
</sect6>
<sect6> <title>r3fpmapto</title>

r3fpmapto

Class

plugins/objects/fprint/r3fpmapto.h

Library

r3fprint

Description:

Footprint mapping tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Footprintmappertool

Class Identifier

R3CLID_FOOTPRINTMAPPERTOOL - 1610

Methods

Attributes

Registration

int R3RegisterFootPrintMapperToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3fpswapto</title>

r3fpswapto

Class

plugins/objects/fprint/r3fpswapto.h

Library

r3fprint

Description:

Footprint reattach tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Footprintswaptool

Class Identifier

R3CLID_FOOTPRINTSWAPTOOL - 1626

Methods

Attributes

Registration

int R3RegisterFootPrintSwapToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3fprtol</title>

r3fprtol

Class

plugins/objects/fprint/r3fprtol.h

Library

r3fprint

Description:

Footprint tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Footprinttool

Class Identifier

R3CLID_FOOTPRINTTOOL - 1491

Methods

Attributes

Registration

int R3RegisterFootPrintToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3fpumapto</title>

r3fpumapto

Class

plugins/objects/fprint/r3fpumapto.h

Library

r3fprint

Description:

Footprint detaching

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Footprintunmaptool

Class Identifier

R3CLID_FOOTPRINTUNMAPTOOL - 1631

Methods

Attributes

Registration

int R3RegisterFootPrintUnMapToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3footto</title>

r3footto

Class

plugins/objects/fprint/r3footto.h

Library

r3fprint

Description:

Foot tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Foottool

Class Identifier

R3CLID_FOOTTOOL - 1443

Methods

Attributes

Registration

int R3RegisterFootToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3togmpack</title>

r3togmpack

Class

plugins/objects/gmanag/r3togmpack.h

Library

r3gmanag

Description:

Packer geometry manager tool, for parametric measuring tool set.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Gmpacktool

Class Identifier

R3CLID_GMPACKTOOL - 2588

Methods

Attributes

</sect6>
<sect6> <title>r3togmrepl</title>

r3togmrepl

Class

plugins/objects/gmanag/r3togmrepl.h

Library

r3gmanag

Description:

Replicator geometry manager tool, for parametric measuring tool set.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Gmrepltool

Class Identifier

R3CLID_GMREPLTOOL - 2628

Methods

Attributes

</sect6>
<sect6> <title>r3grotol</title>

r3grotol

Class

real/windows/r3grotol.h

Library

r3win

Description:

Group tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Grouptool

Class Identifier

R3CLID_GROUPTOOL - 1405

Methods

Attributes

Registration

int R3RegisterGroupToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3iktol</title>

r3iktol

Class

real/windows/r3iktol.h

Library

r3win

Description:

Inverse Kinematics Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Iktool

Class Identifier

R3CLID_IKTOOL - 261

Methods

Attributes

Registration

int R3RegisterIKToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3interpolatortool</title>

r3interpolatortool

Class

plugins/objects/interpolator/r3interpolatortool.h

Library

r3interpolator

Description:

Interpolator tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Interpolatortool

Class Identifier

R3CLID_INTERPOLATORTOOL - 1580

Methods

Attributes

</sect6>
<sect6> <title>r3toinvkin</title>

r3toinvkin

Class

plugins/objects/invkin/r3toinvkin.h

Library

r3invkin

Description:

Tool button for inverse kinematics objects

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Invkintool

Class Identifier

R3CLID_INVKINTOOL - 2469

Methods

Attributes

</sect6>
<sect6> <title>r3knifetool</title>

r3knifetool

Class

plugins/objects/sdsplus/r3knifetool.h

Library

r3sdsplus

Description:

SDS knife tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Knifetool

Class Identifier

R3CLID_KNIFETOOL - 1816

Methods

Attributes

Registration

int R3RegisterKnifeToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>p3lineto</title>

p3lineto

Class

plugins/tools/3dpaint/p3lineto.h

Library

r33dp

Description:

polyline painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Linepaintingtool

Class Identifier

R3CLID_LINEPAINTINGTOOL - 1473

Registration

int R3RegisterLinePaintingToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3linktool</title>

r3linktool

Class

plugins/objects/link/r3linktool.h

Library

r3link

Description:

Link tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Linktool

Class Identifier

R3CLID_LINKTOOL - 1297

Methods

Attributes

Registration

int R3RegisterLinkToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3tolookat</title>

r3tolookat

Class

plugins/objects/lookat/r3tolookat.h

Library

r3lookat

Description:

Tool button for creating lookat objects

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lookattool

Class Identifier

R3CLID_LOOKATTOOL - 2439

Methods

Attributes

</sect6>
<sect6> <title>r3lsatol</title>

r3lsatol

Class

real/windows/r3lsatol.h

Library

r3win

Description:

Ambient light source tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lsambienttool

Class Identifier

R3CLID_LSAMBIENTTOOL - 507

Methods

Attributes

Registration

int R3RegisterAmbientLightToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3lsdtol</title>

r3lsdtol

Class

real/windows/r3lsdtol.h

Library

r3win

Description:

Distant light source tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lsdistanttool

Class Identifier

R3CLID_LSDISTANTTOOL - 502

Methods

Attributes

Registration

int R3RegisterDistantLightToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3lsptol</title>

r3lsptol

Class

real/windows/r3lsptol.h

Library

r3win

Description:

Point light source tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lspointtool

Class Identifier

R3CLID_LSPOINTTOOL - 199

Methods

Attributes

Registration

int R3RegisterLightPointToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3lsetol</title>

r3lsetol

Class

real/windows/r3lsetol.h

Library

r3win

Description:

Special light source tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lsspecialtool

Class Identifier

R3CLID_LSSPECIALTOOL - 513

Methods

Attributes

Registration

int R3RegisterSpecialLightToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3lsstol</title>

r3lsstol

Class

real/windows/r3lsstol.h

Library

r3win

Description:

Spot light source tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Lsspottool

Class Identifier

R3CLID_LSSPOTTOOL - 511

Methods

Attributes

Registration

int R3RegisterSpotLightToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3muvmto</title>

f3muvmto

Class

real/windows/f3muvmto.h

Library

r3win

Description:

Make uv map image from genereal mappings

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Makeuvmaptool

Class Identifier

R3CLID_MAKEUVMAPTOOL - 722

Methods

Attributes

</sect6>
<sect6> <title>f3mapdistr</title>

f3mapdistr

Class

real/windows/f3mapdistr.h

Library

r3win

Description:

Distribute over surface

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Mapdistributetool

Class Identifier

R3CLID_MAPDISTRIBUTETOOL - 1694

Methods

Attributes

</sect6>
<sect6> <title>f3mapswap</title>

f3mapswap

Class

real/windows/f3mapswap.h

Library

r3win

Description:

Detach target from their current lattice objects and attach them to the selected lattices.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Mapswaptool

Class Identifier

R3CLID_MAPSWAPTOOL - 1619

Methods

Attributes

Registration

int R3RegisterMapSwapToolClass(R3APP *app);

</sect6>
<sect6> <title>f3maptol</title>

f3maptol

Class

real/windows/f3maptol.h

Library

r3win

Description:

Lattice mapping tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Maptool

Class Identifier

R3CLID_MAPTOOL - 680

Methods

Attributes

</sect6>
<sect6> <title>r3measuretool</title>

r3measuretool

Class

plugins/objects/measure/r3measuretool.h

Library

r3measure

Description:

Measuring line tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Measuretool

Class Identifier

R3CLID_MEASURETOOL - 2575

Methods

Attributes

Registration

int R3RegisterMeasureToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3metatool</title>

r3metatool

Class

plugins/objects/metaball/r3metatool.h

Library

r3metab

Description:

Metaball tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Metaballtool

Class Identifier

R3CLID_METABALLTOOL - 1672

Methods

Attributes

</sect6>
<sect6> <title>r3mulmto</title>

r3mulmto

Class

real/windows/r3mulmto.h

Library

r3win

Description:

Lattice multi mapping tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Multimaptool

Class Identifier

R3CLID_MULTIMAPTOOL - 1620

Methods

Attributes

</sect6>
<sect6> <title>f3nrbcto</title>

f3nrbcto

Class

real/windows/f3nrbcto.h

Library

r3win

Description:

Tool which converts selected objects to nurbs meshes

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Nurbsconvertertool

Class Identifier

R3CLID_NURBSCONVERTERTOOL - 1300

Methods

Attributes

Registration

int R3RegisterNurbsConverterToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3nrbtls</title>

r3nrbtls

Class

real/windows/r3nrbtls.h

Library

r3win

Description:

Nurbs Tools Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Nurbstools

Class Identifier

R3CLID_NURBSTOOLS - 189

Methods

Attributes

Registration

int R3RegisterNurbsToolsClass(R3APP *app);


r3appobj *

<sect7> <title>r3crctol</title>

r3crctol

Class

real/windows/r3crctol.h

Library

r3win

Description:

CircleTool Class

See Also

real/windows/r3nrbtls.h

Super Class

r3Nurbstools

R3CLID_NURBSTOOLS

JavaScript

r3Circletool

Class Identifier

R3CLID_CIRCLETOOL - 191

Methods

Attributes

Registration

int R3RegisterCircleToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3crcto2</title>

r3crcto2

Class

real/windows/r3crcto2.h

Library

r3win

Description:

CircleTool2 Class

See Also

real/windows/r3crctol.h

Super Class

r3Circletool

R3CLID_CIRCLETOOL

JavaScript

r3Circletool2

Class Identifier

R3CLID_CIRCLETOOL2 - 563

Methods

Attributes

Registration

int R3RegisterCircleTool2Class(R3APP *app);


r3appobj *

<sect9> <title>r3analyticcircletool</title>

r3analyticcircletool

Class

plugins/tools/analytictools/r3analyticcircletool.h

Library

r3analytictools

Description:

Analytic Circle tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analyticcircletool

Class Identifier

R3CLID_ANALYTICCIRCLETOOL - 1830

Methods

Attributes

Registration

int R3RegisterAnalyticCircleToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticconetool</title>

r3analyticconetool

Class

plugins/tools/analytictools/r3analyticconetool.h

Library

r3analytictools

Description:

Analytic Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analyticconetool

Class Identifier

R3CLID_ANALYTICCONETOOL - 1831

Methods

Attributes

Registration

int R3RegisterAnalyticConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticcutconetool</title>

r3analyticcutconetool

Class

plugins/tools/analytictools/r3analyticcutconetool.h

Library

r3analytictools

Description:

Analytic Cut Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analyticcutconetool

Class Identifier

R3CLID_ANALYTICCUTCONETOOL - 1848

Methods

Attributes

Registration

int R3RegisterAnalyticCutConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticcylindertool</title>

r3analyticcylindertool

Class

plugins/tools/analytictools/r3analyticcylindertool.h

Library

r3analytictools

Description:

Analytic Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analyticcylindertool

Class Identifier

R3CLID_ANALYTICCYLINDERTOOL - 1834

Methods

Attributes

Registration

int R3RegisterAnalyticCylinderToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticdisktool</title>

r3analyticdisktool

Class

plugins/tools/analytictools/r3analyticdisktool.h

Library

r3analytictools

Description:

Analytic Disk tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analyticdisktool

Class Identifier

R3CLID_ANALYTICDISKTOOL - 1838

Methods

Attributes

Registration

int R3RegisterAnalyticDiskToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analytichyperboloidtool</title>

r3analytichyperboloidtool

Class

plugins/tools/analytictools/r3analytichyperboloidtool.h

Library

r3analytictools

Description:

Analytic Hyperboloid / Ellipsoid segment tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Analytichyperboloidtool

Class Identifier

R3CLID_ANALYTICHYPERBOLOIDTOOL - 1858

Methods

Attributes

Registration

int R3RegisterAnalyticHyperboloidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscircletool</title>

r3nurbscircletool

Class

plugins/tools/nurbstools/r3nurbscircletool.h

Library

r3nurbstools

Description:

NURBS Circle tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbscircletool

Class Identifier

R3CLID_NURBSCIRCLETOOL - 1839

Methods

Attributes

Registration

int R3RegisterNURBSCircleToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscirculartrimcurvetool</title>

r3nurbscirculartrimcurvetool

Class

plugins/tools/nurbstools/r3nurbscirculartrimcurvetool.h

Library

r3nurbstools

Description:

NURBS Circular Trim curve tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbscirculartrimcurvetool

Class Identifier

R3CLID_NURBSCIRCULARTRIMCURVETOOL - 1862

Methods

Attributes

Registration

int R3RegisterNURBSCircularTrimCurveToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbsconetool</title>

r3nurbsconetool

Class

plugins/tools/nurbstools/r3nurbsconetool.h

Library

r3nurbstools

Description:

NURBS Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbsconetool

Class Identifier

R3CLID_NURBSCONETOOL - 1840

Methods

Attributes

Registration

int R3RegisterNURBSConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscutconetool</title>

r3nurbscutconetool

Class

plugins/tools/nurbstools/r3nurbscutconetool.h

Library

r3nurbstools

Description:

NURBS Cut Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbscutconetool

Class Identifier

R3CLID_NURBSCUTCONETOOL - 1850

Methods

Attributes

Registration

int R3RegisterNURBSCutConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscylindertool</title>

r3nurbscylindertool

Class

plugins/tools/nurbstools/r3nurbscylindertool.h

Library

r3nurbstools

Description:

NURBS Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbscylindertool

Class Identifier

R3CLID_NURBSCYLINDERTOOL - 1843

Methods

Attributes

Registration

int R3RegisterNURBSCylinderToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbsdisktool</title>

r3nurbsdisktool

Class

plugins/tools/nurbstools/r3nurbsdisktool.h

Library

r3nurbstools

Description:

NURBS Disk tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Nurbsdisktool

Class Identifier

R3CLID_NURBSDISKTOOL - 1854

Methods

Attributes

Registration

int R3RegisterNURBSDiskToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdscircletool</title>

r3sdscircletool

Class

plugins/tools/sdstools/r3sdscircletool.h

Library

r3sdstools

Description:

SDS Circle tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Sdscircletool

Class Identifier

R3CLID_SDSCIRCLETOOL - 1827

Methods

Attributes

Registration

int R3RegisterSDSCircleToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdsconetool</title>

r3sdsconetool

Class

plugins/tools/sdstools/r3sdsconetool.h

Library

r3sdstools

Description:

SDS Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Sdsconetool

Class Identifier

R3CLID_SDSCONETOOL - 1828

Methods

Attributes

Registration

int R3RegisterSDSConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdscutconetool</title>

r3sdscutconetool

Class

plugins/tools/sdstools/r3sdscutconetool.h

Library

r3sdstools

Description:

SDS Cut Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Sdscutconetool

Class Identifier

R3CLID_SDSCUTCONETOOL - 1855

Methods

Attributes

Registration

int R3RegisterSDSCutConeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdscylindertool</title>

r3sdscylindertool

Class

plugins/tools/sdstools/r3sdscylindertool.h

Library

r3sdstools

Description:

SDS Cone tool class

See Also

real/windows/r3crcto2.h

Super Class

r3Circletool2

R3CLID_CIRCLETOOL2

JavaScript

r3Sdscylindertool

Class Identifier

R3CLID_SDSCYLINDERTOOL - 1829

Methods

Attributes

Registration

int R3RegisterSDSCylinderToolClass(R3APP *app);


r3appobj *

</sect9>
</sect8>
<sect8> <title>r3cimato</title>

r3cimato

Class

plugins/tools/maps/r3cimato.h

Library

r3map

Description:

Base class for all circular mappings

See Also

real/windows/r3crctol.h

Super Class

r3Circletool

R3CLID_CIRCLETOOL

JavaScript

r3Circularmappingtool

Class Identifier

R3CLID_CIRCULARMAPPINGTOOL - 378

Methods

<sect9> <title>r3cmatol</title>

r3cmatol

Class

plugins/tools/maps/r3cmatol.h

Library

r3map

Description:

CylinderMappingTool Class

See Also

plugins/tools/maps/r3cimato.h

Super Class

r3Circularmappingtool

R3CLID_CIRCULARMAPPINGTOOL

JavaScript

r3Cylindermappingtool

Class Identifier

R3CLID_CYLINDERMAPPINGTOOL - 521

Methods

Attributes

Registration

int R3RegisterCylinderMappingToolClass(R3APP *app);

</sect9>
<sect9> <title>r3dmatol</title>

r3dmatol

Class

plugins/tools/maps/r3dmatol.h

Library

r3map

Description:

DiskMappingTool Class

See Also

plugins/tools/maps/r3cimato.h

Super Class

r3Circularmappingtool

R3CLID_CIRCULARMAPPINGTOOL

JavaScript

r3Diskmappingtool

Class Identifier

R3CLID_DISKMAPPINGTOOL - 525

Methods

Attributes

Registration

int R3RegisterDiskMappingToolClass(R3APP *app);

</sect9>
</sect8>
</sect7>
<sect7> <title>r3nrbtol</title>

r3nrbtol

Class

real/windows/r3nrbtol.h

Library

r3win

Description:

Nurbs curve tool

See Also

real/windows/r3nrbtls.h

Super Class

r3Nurbstools

R3CLID_NURBSTOOLS

JavaScript

r3Nurbstool

Class Identifier

R3CLID_NURBSTOOL - 190

Methods

Attributes

Registration

int R3RegisterNurbsToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3analyticpolygontool</title>

r3analyticpolygontool

Class

plugins/tools/analytictools/r3analyticpolygontool.h

Library

r3analytictools

Description:

Analytic Polygon tool class

See Also

real/windows/r3nrbtol.h

Super Class

r3Nurbstool

R3CLID_NURBSTOOL

JavaScript

r3Analyticpolygontool

Class Identifier

R3CLID_ANALYTICPOLYGONTOOL - 1851

Methods

Attributes

Registration

int R3RegisterAnalyticPolygonToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3analyticpolyhedrontool</title>

r3analyticpolyhedrontool

Class

plugins/tools/analytictools/r3analyticpolyhedrontool.h

Library

r3analytictools

Description:

Analytic Polyhedron tool class

See Also

real/windows/r3nrbtol.h

Super Class

r3Nurbstool

R3CLID_NURBSTOOL

JavaScript

r3Analyticpolyhedrontool

Class Identifier

R3CLID_ANALYTICPOLYHEDRONTOOL - 1853

Methods

Attributes

Registration

int R3RegisterAnalyticPolyhedronToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3analyticpolymidtool</title>

r3analyticpolymidtool

Class

plugins/tools/analytictools/r3analyticpolymidtool.h

Library

r3analytictools

Description:

Analytic Polymid tool class

See Also

real/windows/r3nrbtol.h

Super Class

r3Nurbstool

R3CLID_NURBSTOOL

JavaScript

r3Analyticpolymidtool

Class Identifier

R3CLID_ANALYTICPOLYMIDTOOL - 1852

Methods

Attributes

Registration

int R3RegisterAnalyticPolymidToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3nurbscurvetool</title>

r3nurbscurvetool

Class

plugins/tools/nurbstools/r3nurbscurvetool.h

Library

r3nurbstools

Description:

NURBS Curve tool class

See Also

real/windows/r3nrbtol.h

Super Class

r3Nurbstool

R3CLID_NURBSTOOL

JavaScript

r3Nurbscurvetool

Class Identifier

R3CLID_NURBSCURVETOOL - 1859

Methods

Attributes

Registration

int R3RegisterNURBSCurveToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3nurbstrimcurvetool</title>

r3nurbstrimcurvetool

Class

plugins/tools/nurbstools/r3nurbstrimcurvetool.h

Library

r3nurbstools

Description:

NURBS Trim curve tool class

See Also

real/windows/r3nrbtol.h

Super Class

r3Nurbstool

R3CLID_NURBSTOOL

JavaScript

r3Nurbstrimcurvetool

Class Identifier

R3CLID_NURBSTRIMCURVETOOL - 1860

Methods

Attributes

Registration

int R3RegisterNURBSTrimCurveToolClass(R3APP *app);


r3appobj *

</sect8>
</sect7>
<sect7> <title>r3rcttol</title>

r3rcttol

Class

real/windows/r3rcttol.h

Library

r3win

Description:

RectangleTool Class

See Also

real/windows/r3nrbtls.h

Super Class

r3Nurbstools

R3CLID_NURBSTOOLS

JavaScript

r3Rectangletool

Class Identifier

R3CLID_RECTANGLETOOL - 192

Methods

Attributes

Registration

int R3RegisterRectangleToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3fileinsttool</title>

r3fileinsttool

Class

plugins/objects/fileinst/r3fileinsttool.h

Library

r3fileinst

Description:

Tool button for the file instance object.

See Also

plugins/tools/maps/r3rmatol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Fileinstancetool

Class Identifier

R3CLID_FILEINSTANCETOOL - 1995

</sect8>
<sect8> <title>r3grdtol</title>

r3grdtol

Class

real/windows/r3grdtol.h

Library

r3win

Description:

GridTool Class

See Also

real/windows/r3rcttol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Gridtool

Class Identifier

R3CLID_GRIDTOOL - 67

Methods

Attributes

Registration

int R3RegisterGridToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3iplanetool</title>

r3iplanetool

Class

real/windows/r3iplanetool.h

Library

r3win

Description:

Input plane tool

See Also

real/windows/r3rcttol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Inputplanetool

Class Identifier

R3CLID_INPUTPLANETOOL - 1719

Methods

Attributes

Registration

int R3RegisterInputPlaneToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3lattol</title>

r3lattol

Class

real/windows/r3lattol.h

Library

r3win

Description:

Lattice Tool Class

See Also

real/windows/r3rcttol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Latticetool

Class Identifier

R3CLID_LATTICETOOL - 322

Methods

Attributes

Registration

int R3RegisterLatticeToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3rctto2</title>

r3rctto2

Class

real/windows/r3rctto2.h

Library

r3win

Description:

RectangleTool2 Class

See Also

real/windows/r3rcttol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Rectangletool2

Class Identifier

R3CLID_RECTANGLETOOL2 - 561

Methods

Attributes

Registration

int R3RegisterRectangleTool2Class(R3APP *app);


r3appobj *

<sect9> <title>r3analyticcubetool</title>

r3analyticcubetool

Class

plugins/tools/analytictools/r3analyticcubetool.h

Library

r3analytictools

Description:

Analytic Cube tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Analyticcubetool

Class Identifier

R3CLID_ANALYTICCUBETOOL - 1833

Methods

Attributes

Registration

int R3RegisterAnalyticCubeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticcutpyramidtool</title>

r3analyticcutpyramidtool

Class

plugins/tools/analytictools/r3analyticcutpyramidtool.h

Library

r3analytictools

Description:

Analytic Cut Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Analyticcutpyramidtool

Class Identifier

R3CLID_ANALYTICCUTPYRAMIDTOOL - 1847

Methods

Attributes

Registration

int R3RegisterAnalyticCutPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticpyramidtool</title>

r3analyticpyramidtool

Class

plugins/tools/analytictools/r3analyticpyramidtool.h

Library

r3analytictools

Description:

Analytic Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Analyticpyramidtool

Class Identifier

R3CLID_ANALYTICPYRAMIDTOOL - 1837

Methods

Attributes

Registration

int R3RegisterAnalyticPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3analyticrectangletool</title>

r3analyticrectangletool

Class

plugins/tools/analytictools/r3analyticrectangletool.h

Library

r3analytictools

Description:

Analytic Rectangle tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Analyticrectangletool

Class Identifier

R3CLID_ANALYTICRECTANGLETOOL - 1835

Methods

Attributes

Registration

int R3RegisterAnalyticRectangleToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscubetool</title>

r3nurbscubetool

Class

plugins/tools/nurbstools/r3nurbscubetool.h

Library

r3nurbstools

Description:

NURBS Cube tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Nurbscubetool

Class Identifier

R3CLID_NURBSCUBETOOL - 1842

Methods

Attributes

Registration

int R3RegisterNURBSCubeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbscutpyramidtool</title>

r3nurbscutpyramidtool

Class

plugins/tools/nurbstools/r3nurbscutpyramidtool.h

Library

r3nurbstools

Description:

NURBS Cut Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Nurbscutpyramidtool

Class Identifier

R3CLID_NURBSCUTPYRAMIDTOOL - 1849

Methods

Attributes

Registration

int R3RegisterNURBSCutPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbspyramidtool</title>

r3nurbspyramidtool

Class

plugins/tools/nurbstools/r3nurbspyramidtool.h

Library

r3nurbstools

Description:

NURBS Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Nurbspyramidtool

Class Identifier

R3CLID_NURBSPYRAMIDTOOL - 1844

Methods

Attributes

Registration

int R3RegisterNURBSPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbsrectangletool</title>

r3nurbsrectangletool

Class

plugins/tools/nurbstools/r3nurbsrectangletool.h

Library

r3nurbstools

Description:

NURBS Rectangle tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Nurbsrectangletool

Class Identifier

R3CLID_NURBSRECTANGLETOOL - 1845

Methods

Attributes

Registration

int R3RegisterNURBSRectangleToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3nurbsrectangulartrimcurvetool</title>

r3nurbsrectangulartrimcurvetool

Class

plugins/tools/nurbstools/r3nurbsrectangulartrimcurvetool.h

Library

r3nurbstools

Description:

NURBS Rectangular Trim curve tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Nurbsrectangulartrimcurvetool

Class Identifier

R3CLID_NURBSRECTANGULARTRIMCURVETOOL - 1861

Methods

Attributes

Registration

int R3RegisterNURBSRectangularTrimCurveToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdscubetool</title>

r3sdscubetool

Class

plugins/tools/sdstools/r3sdscubetool.h

Library

r3sdstools

Description:

SDS Cube tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Sdscubetool

Class Identifier

R3CLID_SDSCUBETOOL - 1822

Methods

Attributes

Registration

int R3RegisterSDSCubeToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdscutpyramidtool</title>

r3sdscutpyramidtool

Class

plugins/tools/sdstools/r3sdscutpyramidtool.h

Library

r3sdstools

Description:

SDS Cut Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Sdscutpyramidtool

Class Identifier

R3CLID_SDSCUTPYRAMIDTOOL - 1856

Methods

Attributes

Registration

int R3RegisterSDSCutPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdspyramidtool</title>

r3sdspyramidtool

Class

plugins/tools/sdstools/r3sdspyramidtool.h

Library

r3sdstools

Description:

SDS Pyramid tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Sdspyramidtool

Class Identifier

R3CLID_SDSPYRAMIDTOOL - 1825

Methods

Attributes

Registration

int R3RegisterSDSPyramidToolClass(R3APP *app);


r3appobj *

</sect9>
<sect9> <title>r3sdsrectangletool</title>

r3sdsrectangletool

Class

plugins/tools/sdstools/r3sdsrectangletool.h

Library

r3sdstools

Description:

SDS Rectangle tool class

See Also

real/windows/r3rctto2.h

Super Class

r3Rectangletool2

R3CLID_RECTANGLETOOL2

JavaScript

r3Sdsrectangletool

Class Identifier

R3CLID_SDSRECTANGLETOOL - 1824

Methods

Attributes

Registration

int R3RegisterSDSRectangleToolClass(R3APP *app);


r3appobj *

</sect9>
</sect8>
<sect8> <title>r3rmatol</title>

r3rmatol

Class

plugins/tools/maps/r3rmatol.h

Library

r3map

Description:

Base class for all rectangular maps

See Also

real/windows/r3rcttol.h

Super Class

r3Rectangletool

R3CLID_RECTANGLETOOL

JavaScript

r3Rectangularmappingtool

Class Identifier

R3CLID_RECTANGULARMAPPINGTOOL - 360

Methods

<sect9> <title>r3cumato</title>

r3cumato

Class

plugins/tools/maps/r3cumato.h

Library

r3map

Description:

Cube mapping class

See Also

plugins/tools/maps/r3rmatol.h

Super Class

r3Rectangularmappingtool

R3CLID_RECTANGULARMAPPINGTOOL

JavaScript

r3Cubemappingtool

Class Identifier

R3CLID_CUBEMAPPINGTOOL - 347

Methods

</sect9>
<sect9> <title>r3pmatol</title>

r3pmatol

Class

plugins/tools/maps/r3pmatol.h

Library

r3map

Description:

ParallelMappingTool Class

See Also

plugins/tools/maps/r3rmatol.h

Super Class

r3Rectangularmappingtool

R3CLID_RECTANGULARMAPPINGTOOL

JavaScript

r3Parallelmappingtool

Class Identifier

R3CLID_PARALLELMAPPINGTOOL - 517

Methods

Attributes

</sect9>
<sect9> <title>r3pymato</title>

r3pymato

Class

plugins/tools/maps/r3pymato.h

Library

r3map

Description:

PyramidMappingTool Class

See Also

plugins/tools/maps/r3rmatol.h

Super Class

r3Rectangularmappingtool

R3CLID_RECTANGULARMAPPINGTOOL

JavaScript

r3Pyramidmappingtool

Class Identifier

R3CLID_PYRAMIDMAPPINGTOOL - 1907

</sect9>
</sect8>
</sect7>
</sect6>
<sect6> <title>p3pwstol</title>

p3pwstol

Class

plugins/tools/3dpaint/p3pwstol.h

Library

r33dp

Description:

Paint with selected objects.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Paintwithselectedtool

Class Identifier

R3CLID_PAINTWITHSELECTEDTOOL - 1408

Registration

int R3RegisterPaintWithSelectedToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3partol</title>

r3partol

Class

real/windows/r3partol.h

Library

r3win

Description:

SphereTool Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Particletool

Class Identifier

R3CLID_PARTICLETOOL - 306

Methods

Attributes

Registration

int R3RegisterParticleToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>p3psteto</title>

p3psteto

Class

plugins/tools/3dpaint/p3psteto.h

Library

r33dp

Description:

3D painting tool for pasting one images color values to anothers texture

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Pastepaintingtool

Class Identifier

R3CLID_PASTEPAINTINGTOOL - 728

Methods

Attributes

Registration

int R3RegisterPastePaintToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>a3pathto</title>

a3pathto

Class

real/windows/a3pathto.h

Library

r3win

Description:

Animation path tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Pathtool

Class Identifier

R3CLID_PATHTOOL - 1334

Methods

Attributes

</sect6>
<sect6> <title>r3physto</title>

r3physto

Class

real/windows/r3physto.h

Library

r3win

Description:

Define physical properties (velocity and spin) of objects

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Physicaltool

Class Identifier

R3CLID_PHYSICALTOOL - 1435

Methods

Attributes

Registration

int R3RegisterPhysicalToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3pxmesh</title>

f3pxmesh

Class

real/windows/f3pxmesh.h

Library

r3win

Description:

Pixel Mesh Tool. Displaces selected meshes by image

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Pixelmeshtool

Class Identifier

R3CLID_PIXELMESHTOOL - 540

Methods

Attributes

Registration

int R3RegisterPixelMeshToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3pdisplacertool</title>

r3pdisplacertool

Class

plugins/objects/pointdisplacer/r3pdisplacertool.h

Library

r3pointdisplacer

Description:

Point displacer deformer

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Pointdisplacertool

Class Identifier

R3CLID_POINTDISPLACERTOOL - 1904

Methods

Attributes

Registration

int R3RegisterPointDisplacerToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>p3poltol</title>

p3poltol

Class

plugins/tools/3dpaint/p3poltol.h

Library

r33dp

Description:

Closed symmetric polygon painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Polygonpaintingtool

Class Identifier

R3CLID_POLYGONPAINTINGTOOL - 1466

Registration

int R3RegisterPolygonPaintingToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3posmarktool</title>

r3posmarktool

Class

plugins/objects/measure/r3posmarktool.h

Library

r3measure

Description:

Position mark tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Positionmarktool

Class Identifier

R3CLID_POSITIONMARKTOOL - 2591

Methods

Attributes

Registration

int R3RegisterPositionMarkToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3radialdeformertool</title>

r3radialdeformertool

Class

plugins/objects/pointdisplacer/r3radialdeformertool.h

Library

r3pointdisplacer

Description:

Tool for creating radial deformers

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Radialdeformertool

Class Identifier

R3CLID_RADIALDEFORMERTOOL - 1897

Methods

Attributes

</sect6>
<sect6> <title>p3rectol</title>

p3rectol

Class

plugins/tools/3dpaint/p3rectol.h

Library

r33dp

Description:

Rectangle 3D painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Rectanglepaintingtool

Class Identifier

R3CLID_RECTANGLEPAINTINGTOOL - 1413

Methods

Attributes

Registration

int R3RegisterRectanglePaintingToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3rotate</title>

f3rotate

Class

real/windows/f3rotate.h

Library

r3win

Description:

Rotational Surface Construction Tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Rotateconstructor

Class Identifier

R3CLID_ROTATECONSTRUCTOR - 359

Methods

Attributes

Registration

int R3RegisterRotateConstructorClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3rttrto</title>

r3rttrto

Class

real/windows/r3rttrto.h

Library

r3win

Description:

Rotator tool

See Also

real/windows/r3sphtol.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Rotatortool

Class Identifier

R3CLID_ROTATORTOOL - 655

Methods

Attributes

Registration

int R3RegisterRotatorToolClass(R3APP *app);

</sect6>
<sect6> <title>r3seedtool</title>

r3seedtool

Class

plugins/objects/plant/r3seedtool.h

Library

r3plant

Description:

The top level plant tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Seedtool

Class Identifier

R3CLID_SEEDTOOL - 2547

Methods

Attributes

Registration

int R3RegisterSeedToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3seltol</title>

r3seltol

Class

real/windows/r3seltol.h

Library

r3win

Description:

Select tool. This tool allows the user to select objects through View windows. Thne Select tool also manages object specific tool set.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Selecttool

Class Identifier

R3CLID_SELECTTOOL - 355

Methods

SETSELECTMETHOD, REGISTERPRIMTOOL,

Attributes

Registration

int R3RegisterSelectToolClass(R3APP *app);

R3SELTOLM_SETSELECTMETHOD

Method

SETSELECTMETHOD

Identifier

R3SELTOLM_SETSELECTMETHOD

JavaScript

obj.SETSELECTMETHOD();

Description

For handling MAPCHANGES. Activates desired select method, such as drag box or lasso.

R3SELTOLCM_REGISTERPRIMTOOL

Method

REGISTERPRIMTOOL

Identifier

R3SELTOLCM_REGISTERPRIMTOOL

Param 1:

R3INT, class id of the primitive object

Param 2:

R3INT, class id of the gadget

Param 3:

R3TAG*, tag list, for future expansion

JavaScript

obj.REGISTERPRIMTOOL(p1, p2, p3);

Description

Register new object specific gadget for the toolbar. This gadget is shown when the corresponding object is selected.


r3appobj *

</sect6>
<sect6> <title>r3selpaintertool</title>

r3selpaintertool

Class

plugins/tools/selpainter/r3selpaintertool.h

Library

r3selpainter

Description:

Selection painter tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Selpaintertool

Class Identifier

R3CLID_SELPAINTERTOOL - 2289

Registration

int R3RegisterSelPainterToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3skltol</title>

r3skltol

Class

real/windows/r3skltol.h

Library

r3win

Description:

SkeletonTool Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Skeletontool

Class Identifier

R3CLID_SKELETONTOOL - 193

Methods

Attributes

Registration

int R3RegisterSkeletonToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3snap</title>

r3snap

Class

plugins/objects/gmanag/r3snap.h

Library

r3gmanag

Description:

Snap tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Snaptool

Class Identifier

R3CLID_SNAPTOOL - 2622

Methods

Attributes

</sect6>
<sect6> <title>r3sphtol</title>

r3sphtol

Class

real/windows/r3sphtol.h

Library

r3win

Description:

SphereTool Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Spheretool

Class Identifier

R3CLID_SPHERETOOL - 188

Methods

Attributes

Registration

int R3RegisterSphereToolClass(R3APP *app);


r3appobj *

<sect7> <title>r3smatol</title>

r3smatol

Class

plugins/tools/maps/r3smatol.h

Library

r3map

Description:

SphereMappingTool Class

See Also

real/windows/r3sphtol.h

Super Class

r3Spheretool

R3CLID_SPHERETOOL

JavaScript

r3Spheremappingtool

Class Identifier

R3CLID_SPHEREMAPPINGTOOL - 528

Methods

Attributes

Registration

int R3RegisterSphereMappingToolClass(R3APP *app);

</sect7>
<sect7> <title>r3sphto2</title>

r3sphto2

Class

real/windows/r3sphto2.h

Library

r3win

Description:

Sphere tool class

See Also

real/windows/r3sphtol.h

Super Class

r3Spheretool

R3CLID_SPHERETOOL

JavaScript

r3Spheretool2

Class Identifier

R3CLID_SPHERETOOL2 - 562

Methods

Attributes

Registration

int R3RegisterSphereTool2Class(R3APP *app);


r3appobj *

<sect8> <title>r3analyticspheretool</title>

r3analyticspheretool

Class

plugins/tools/analytictools/r3analyticspheretool.h

Library

r3analytictools

Description:

Analytic Sphere tool class

See Also

real/windows/r3sphto2.h

Super Class

r3Spheretool2

R3CLID_SPHERETOOL2

JavaScript

r3Analyticspheretool

Class Identifier

R3CLID_ANALYTICSPHERETOOL - 1836

Methods

Attributes

Registration

int R3RegisterAnalyticSphereToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3nurbsspheretool</title>

r3nurbsspheretool

Class

plugins/tools/nurbstools/r3nurbsspheretool.h

Library

r3nurbstools

Description:

NURBS Sphere tool class

See Also

real/windows/r3sphto2.h

Super Class

r3Spheretool2

R3CLID_SPHERETOOL2

JavaScript

r3Nurbsspheretool

Class Identifier

R3CLID_NURBSSPHERETOOL - 1846

Methods

Attributes

Registration

int R3RegisterNURBSSphereToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3sdsspheretool</title>

r3sdsspheretool

Class

plugins/tools/sdstools/r3sdsspheretool.h

Library

r3sdstools

Description:

SDS Sphere tool class

See Also

real/windows/r3sphto2.h

Super Class

r3Spheretool2

R3CLID_SPHERETOOL2

JavaScript

r3Sdsspheretool

Class Identifier

R3CLID_SDSSPHERETOOL - 1826

Methods

Attributes

Registration

int R3RegisterSDSSphereToolClass(R3APP *app);


r3appobj *

</sect8>
</sect7>
</sect6>
<sect6> <title>r3physto2</title>

r3physto2

Class

real/windows/r3physto2.h

Library

r3win

Description:

Spin tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Spintool

Class Identifier

R3CLID_SPINTOOL - 1481

Methods

Attributes

Registration

int R3RegisterSpinToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3spiraltool</title>

r3spiraltool

Class

plugins/tools/nurbs/r3spiraltool.h

Library

r3nurbs

Description:

Helix tool class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Spiraltool

Class Identifier

R3CLID_SPIRALTOOL - 1789

Methods

Attributes

Registration

int R3RegisterSpiralToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3sditol</title>

r3sditol

Class

real/windows/r3sditol.h

Library

r3win

Description:

Subdidision surface tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Subdivisiontool

Class Identifier

R3CLID_SUBDIVISIONTOOL - 1318

Methods

Attributes

Registration

int R3RegisterSubdivisionToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3sweep</title>

f3sweep

Class

real/windows/f3sweep.h

Library

r3win

Description:

Sweep construction tools for nurbs mesh

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Sweep

Class Identifier

R3CLID_SWEEP - 663

Methods

Attributes

</sect6>
<sect6> <title>r3trntls</title>

r3trntls

Class

real/windows/r3trntls.h

Library

r3win

Description:

TransformTools Class

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Transformtools

Class Identifier

R3CLID_TRANSFORMTOOLS - 194

Methods

Attributes

Registration

int R3RegisterTransformToolsClass(R3APP *app);


r3appobj *

<sect7> <title>r3bendto</title>

r3bendto

Class

real/windows/r3bendto.h

Library

r3win

Description:

Bend deformation tool

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Bendtool

Class Identifier

R3CLID_BENDTOOL - 662

Methods

Registration

int R3RegisterBendToolClass(R3APP *app);


r3appobj *

</sect7>
<sect7> <title>r3exttol</title>

r3exttol

Class

real/windows/r3exttol.h

Library

r3win

Description:

1D scale tool

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Extendtool

Class Identifier

R3CLID_EXTENDTOOL - 637

Methods

Attributes

Registration

int R3RegisterExtendToolClass(R3APP *app);


r3appobj *

</sect7>
<sect7> <title>r3mirtol</title>

r3mirtol

Class

real/windows/r3mirtol.h

Library

r3win

Description:

Mirror tool

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Mirrortool

Class Identifier

R3CLID_MIRRORTOOL - 639

Methods

Attributes

Registration

int R3RegisterMirrorToolClass(R3APP *app);


r3appobj *

</sect7>
<sect7> <title>r3movtol</title>

r3movtol

Class

real/windows/r3movtol.h

Library

r3win

Description:

MoveTool Class

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Movetool

Class Identifier

R3CLID_MOVETOOL - 195

Methods

Attributes

Registration

int R3RegisterMoveToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3move1ddeformtool</title>

r3move1ddeformtool

Class

plugins/tools/deformtools/r3move1ddeformtool.h

Library

r3deformtools

Description:

Move 1D deformation tool.

See Also

real/windows/r3movtol.h

Super Class

r3Movetool

R3CLID_MOVETOOL

JavaScript

r3Move1ddeformationtool

Class Identifier

R3CLID_MOVE1DDEFORMATIONTOOL - 1879

Methods

Attributes

Registration

int R3RegisterMove1DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3move2ddeformtool</title>

r3move2ddeformtool

Class

plugins/tools/deformtools/r3move2ddeformtool.h

Library

r3deformtools

Description:

Move 2D deformation tool.

See Also

real/windows/r3movtol.h

Super Class

r3Movetool

R3CLID_MOVETOOL

JavaScript

r3Move2ddeformationtool

Class Identifier

R3CLID_MOVE2DDEFORMATIONTOOL - 1880

Methods

Attributes

Registration

int R3RegisterMove2DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3move3ddeformtool</title>

r3move3ddeformtool

Class

plugins/tools/deformtools/r3move3ddeformtool.h

Library

r3deformtools

Description:

Move 3D deformation tool.

See Also

real/windows/r3movtol.h

Super Class

r3Movetool

R3CLID_MOVETOOL

JavaScript

r3Move3ddeformationtool

Class Identifier

R3CLID_MOVE3DDEFORMATIONTOOL - 1871

Methods

Attributes

Registration

int R3RegisterMove3DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
</sect7>
<sect7> <title>r3noiseto</title>

r3noiseto

Class

real/windows/r3noiseto.h

Library

r3win

Description:

Noise deformation tool

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Noisetool

Class Identifier

R3CLID_NOISETOOL - 1480

Methods

Registration

int R3RegisterNoiseToolClass(R3APP *app);


r3appobj *

</sect7>
<sect7> <title>r3rottol</title>

r3rottol

Class

real/windows/r3rottol.h

Library

r3win

Description:

RotateTool Class

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Rotatetransformtool

Class Identifier

R3CLID_ROTATETRANSFORMTOOL - 197

Methods

Attributes

Registration

int R3RegisterRotateToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3rotate1ddeformtool</title>

r3rotate1ddeformtool

Class

plugins/tools/deformtools/r3rotate1ddeformtool.h

Library

r3deformtools

Description:

Rotate 1D deformation tool.

See Also

real/windows/r3rottol.h

Super Class

r3Rotatetransformtool

R3CLID_ROTATETRANSFORMTOOL

JavaScript

r3Rotate1ddeformationtool

Class Identifier

R3CLID_ROTATE1DDEFORMATIONTOOL - 1875

Methods

Attributes

Registration

int R3RegisterRotate1DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3rotate2ddeformtool</title>

r3rotate2ddeformtool

Class

plugins/tools/deformtools/r3rotate2ddeformtool.h

Library

r3deformtools

Description:

Rotate 2D deformation tool.

See Also

real/windows/r3rottol.h

Super Class

r3Rotatetransformtool

R3CLID_ROTATETRANSFORMTOOL

JavaScript

r3Rotate2ddeformationtool

Class Identifier

R3CLID_ROTATE2DDEFORMATIONTOOL - 1876

Methods

Attributes

Registration

int R3RegisterRotate2DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3rotate3ddeformtool</title>

r3rotate3ddeformtool

Class

plugins/tools/deformtools/r3rotate3ddeformtool.h

Library

r3deformtools

Description:

Rotate 3D deformation tool.

See Also

real/windows/r3rottol.h

Super Class

r3Rotatetransformtool

R3CLID_ROTATETRANSFORMTOOL

JavaScript

r3Rotate3ddeformationtool

Class Identifier

R3CLID_ROTATE3DDEFORMATIONTOOL - 1874

Methods

Attributes

Registration

int R3RegisterRotate3DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
</sect7>
<sect7> <title>r3scltol</title>

r3scltol

Class

real/windows/r3scltol.h

Library

r3win

Description:

ScaleTool Class

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Scaletool

Class Identifier

R3CLID_SCALETOOL - 196

Methods

Attributes

Registration

int R3RegisterScaleToolClass(R3APP *app);


r3appobj *

<sect8> <title>r3scale1ddeformtool</title>

r3scale1ddeformtool

Class

plugins/tools/deformtools/r3scale1ddeformtool.h

Library

r3deformtools

Description:

Scale 1D deformation tool.

See Also

real/windows/r3scltol.h

Super Class

r3Scaletool

R3CLID_SCALETOOL

JavaScript

r3Scale1ddeformationtool

Class Identifier

R3CLID_SCALE1DDEFORMATIONTOOL - 1877

Methods

Attributes

Registration

int R3RegisterScale1DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3scale2ddeformtool</title>

r3scale2ddeformtool

Class

plugins/tools/deformtools/r3scale2ddeformtool.h

Library

r3deformtools

Description:

Scale 2D deformation tool.

See Also

real/windows/r3scltol.h

Super Class

r3Scaletool

R3CLID_SCALETOOL

JavaScript

r3Scale2ddeformationtool

Class Identifier

R3CLID_SCALE2DDEFORMATIONTOOL - 1878

Methods

Attributes

Registration

int R3RegisterScale2DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
<sect8> <title>r3scale3ddeformtool</title>

r3scale3ddeformtool

Class

plugins/tools/deformtools/r3scale3ddeformtool.h

Library

r3deformtools

Description:

Scale 3D deformation tool.

See Also

real/windows/r3scltol.h

Super Class

r3Scaletool

R3CLID_SCALETOOL

JavaScript

r3Scale3ddeformationtool

Class Identifier

R3CLID_SCALE3DDEFORMATIONTOOL - 1873

Methods

Attributes

Registration

int R3RegisterScale3DDeformationToolClass(R3APP *app);


r3appobj *

</sect8>
</sect7>
<sect7> <title>r3sizetol</title>

r3sizetol

Class

real/windows/r3sizetol.h

Library

r3win

Description:

Size tool

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Sizetool

Class Identifier

R3CLID_SIZETOOL - 1743

Methods

Attributes

Registration

int R3RegisterSizeToolClass(R3APP *app);


r3appobj *

</sect7>
<sect7> <title>r3skwtol</title>

r3skwtol

Class

real/windows/r3skwtol.h

Library

r3win

Description:

Skew transformation tool Class

See Also

real/windows/r3trntls.h

Super Class

r3Transformtools

R3CLID_TRANSFORMTOOLS

JavaScript

r3Skewtool

Class Identifier

R3CLID_SKEWTOOL - 198

Methods

Attributes

Registration

int R3RegisterSkewToolClass(R3APP *app);


r3appobj *

</sect7>
</sect6>
<sect6> <title>f3tritol</title>

f3tritol

Class

real/windows/f3tritol.h

Library

r3win

Description:

Triset conversion tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Trisettool

Class Identifier

R3CLID_TRISETTOOL - 531

Methods

Attributes

Registration

int R3RegisterTrisetToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3umapto</title>

f3umapto

Class

real/windows/f3umapto.h

Library

r3win

Description:

Lattice un mapping tool.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Unmaptool

Class Identifier

R3CLID_UNMAPTOOL - 648

Methods

Attributes

</sect6>
<sect6> <title>r3uvtool</title>

r3uvtool

Class

real/windows/r3uvtool.h

Library

r3win

Description:

A tool which converts mapping primitives to pointwise uv maps.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Uvtool

Class Identifier

R3CLID_UVTOOL - 1340

Methods

Attributes

Registration

int R3RegisterUVToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3vctool</title>

r3vctool

Class

plugins/tools/viewctrl/r3vctool.h

Library

r3viewctrl

Description:

Base class for view control tools.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Vctool

Class Identifier

R3CLID_VCTOOL - 2751

Methods

Attributes

ViewModel, ViewModelLayer, ViewModelType,

ViewModel

Attribute

ViewModel

Identifier

R3VCTOOLA_ViewModel

JavaScript type

Object

C type

R3OBJ*

Description

current 3d view model object

Syntax


jsobj.SetViewModel(value);
value = jsobj.GetViewModel();


R3OBJ* value = ...;
R3SetAttrs(r3obj, R3VCTOOLA_ViewModel, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3VCTOOLA_ViewModel, &value, R3TAG_END);

ViewModelLayer

Attribute

ViewModelLayer

Identifier

R3VCTOOLA_ViewModelLayer

JavaScript type

Object

C type

R3OBJ*

Description

view model layer

Syntax


jsobj.SetViewModelLayer(value);
value = jsobj.GetViewModelLayer();


R3OBJ* value = ...;
R3SetAttrs(r3obj, R3VCTOOLA_ViewModelLayer, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3VCTOOLA_ViewModelLayer, &value, R3TAG_END);

ViewModelType

Attribute

ViewModelType

Identifier

R3VCTOOLA_ViewModelType

JavaScript type

Integer

C type

R3INT

Description

see view model types below

Syntax


jsobj.SetViewModelType(value);
value = jsobj.GetViewModelType();


R3INT value = ...;
R3SetAttrs(r3obj, R3VCTOOLA_ViewModelType, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3VCTOOLA_ViewModelType, &value, R3TAG_END);

view model types

R3VCTT_ANY
R3VCTT_2D
R3VCTT_3D

<sect7> <title>r3vcboxren</title>

r3vcboxren

Class

plugins/tools/viewctrl/r3vcboxren.h

Library

r3viewctrl

Description:

View control tool: boxren view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcboxrentool

Class Identifier

R3CLID_VCBOXRENTOOL - 2765

Methods

Attributes

</sect7>
<sect7> <title>r3vcfit</title>

r3vcfit

Class

plugins/tools/viewctrl/r3vcfit.h

Library

r3viewctrl

Description:

View control tool: fit view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcfittool

Class Identifier

R3CLID_VCFITTOOL - 2756

Methods

Attributes

</sect7>
<sect7> <title>r3vcfromobj</title>

r3vcfromobj

Class

plugins/tools/viewctrl/r3vcfromobj.h

Library

r3viewctrl

Description:

View control tool: fromobj view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcfromobjtool

Class Identifier

R3CLID_VCFROMOBJTOOL - 2759

Methods

Attributes

</sect7>
<sect7> <title>r3vcfront</title>

r3vcfront

Class

plugins/tools/viewctrl/r3vcfront.h

Library

r3viewctrl

Description:

View control tool: front view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcfronttool

Class Identifier

R3CLID_VCFRONTTOOL - 2752

Methods

Attributes

</sect7>
<sect7> <title>r3vcgridshow</title>

r3vcgridshow

Class

plugins/tools/viewctrl/r3vcgridshow.h

Library

r3viewctrl

Description:

View control tool: fromobj view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcgridshowtool

Class Identifier

R3CLID_VCGRIDSHOWTOOL - 2760

Methods

Attributes

</sect7>
<sect7> <title>r3vcgridsnap</title>

r3vcgridsnap

Class

plugins/tools/viewctrl/r3vcgridsnap.h

Library

r3viewctrl

Description:

View control tool: snap to grid

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcgridsnaptool

Class Identifier

R3CLID_VCGRIDSNAPTOOL - 2761

Methods

Attributes

</sect7>
<sect7> <title>r3vcipby3p</title>

r3vcipby3p

Class

plugins/tools/viewctrl/r3vcipby3p.h

Library

r3viewctrl

Description:

View control tool: ipby3p view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcipby3ptool

Class Identifier

R3CLID_VCIPBY3PTOOL - 2767

Methods

Attributes

</sect7>
<sect7> <title>r3vcipbyn</title>

r3vcipbyn

Class

plugins/tools/viewctrl/r3vcipbyn.h

Library

r3viewctrl

Description:

View control tool: ipbyn view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcipbyntool

Class Identifier

R3CLID_VCIPBYNTOOL - 2768

Methods

Attributes

</sect7>
<sect7> <title>r3vcnavig</title>

r3vcnavig

Class

plugins/tools/viewctrl/r3vcnavig.h

Library

r3viewctrl

Description:

View control tool: navig

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcnavigtool

Class Identifier

R3CLID_VCNAVIGTOOL - 2771

Methods

Attributes

</sect7>
<sect7> <title>r3vcopengl</title>

r3vcopengl

Class

plugins/tools/viewctrl/r3vcopengl.h

Library

r3viewctrl

Description:

View control tool: opengl view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcopengltool

Class Identifier

R3CLID_VCOPENGLTOOL - 2769

Methods

Attributes

</sect7>
<sect7> <title>r3vcpanzoom</title>

r3vcpanzoom

Class

plugins/tools/viewctrl/r3vcpanzoom.h

Library

r3viewctrl

Description:

View control tool: panzoom view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcpanzoomtool

Class Identifier

R3CLID_VCPANZOOMTOOL - 2766

Methods

Attributes

</sect7>
<sect7> <title>r3vcpostproc</title>

r3vcpostproc

Class

plugins/tools/viewctrl/r3vcpostproc.h

Library

r3viewctrl

Description:

View control tool: postproc

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcpostproctool

Class Identifier

R3CLID_VCPOSTPROCTOOL - 2763

Methods

Attributes

</sect7>
<sect7> <title>r3vcproj</title>

r3vcproj

Class

plugins/tools/viewctrl/r3vcproj.h

Library

r3viewctrl

Description:

View control tool: proj

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcprojtool

Class Identifier

R3CLID_VCPROJTOOL - 2753

Methods

Attributes

</sect7>
<sect7> <title>r3vcqvmode</title>

r3vcqvmode

Class

plugins/tools/viewctrl/r3vcqvmode.h

Library

r3viewctrl

Description:

View control tool: gfx view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcqvmodetool

Class Identifier

R3CLID_VCQVMODETOOL - 2780

Methods

Attributes

</sect7>
<sect7> <title>r3vcrender</title>

r3vcrender

Class

plugins/tools/viewctrl/r3vcrender.h

Library

r3viewctrl

Description:

View control tool: render

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcrendertool

Class Identifier

R3CLID_VCRENDERTOOL - 2762

Methods

Attributes

</sect7>
<sect7> <title>r3vcreset</title>

r3vcreset

Class

plugins/tools/viewctrl/r3vcreset.h

Library

r3viewctrl

Description:

View control tool: reset view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcresettool

Class Identifier

R3CLID_VCRESETTOOL - 2757

Methods

Attributes

</sect7>
<sect7> <title>r3vcside</title>

r3vcside

Class

plugins/tools/viewctrl/r3vcside.h

Library

r3viewctrl

Description:

View control tool: side view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vcsidetool

Class Identifier

R3CLID_VCSIDETOOL - 2754

Methods

Attributes

</sect7>
<sect7> <title>r3vctoobj</title>

r3vctoobj

Class

plugins/tools/viewctrl/r3vctoobj.h

Library

r3viewctrl

Description:

View control tool: toobj view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vctoobjtool

Class Identifier

R3CLID_VCTOOBJTOOL - 2758

Methods

Attributes

</sect7>
<sect7> <title>r3vctop</title>

r3vctop

Class

plugins/tools/viewctrl/r3vctop.h

Library

r3viewctrl

Description:

View control tool: top view

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vctoptool

Class Identifier

R3CLID_VCTOPTOOL - 2755

Methods

Attributes

</sect7>
<sect7> <title>r3vctrack</title>

r3vctrack

Class

plugins/tools/viewctrl/r3vctrack.h

Library

r3viewctrl

Description:

View control tool: enable camera tracking

See Also

plugins/tools/viewctrl/r3vctool.h

Super Class

r3Vctool

R3CLID_VCTOOL

JavaScript

r3Vctracktool

Class Identifier

R3CLID_VCTRACKTOOL - 2764

Methods

Attributes

</sect7>
</sect6>
<sect6> <title>p3vertexp</title>

p3vertexp

Class

plugins/tools/3dpaint/p3vertexp.h

Library

r33dp

Description:

Vertex painting tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Vertexpaintertool

Class Identifier

R3CLID_VERTEXPAINTERTOOL - 1633

Registration

int R3RegisterVertexPainterToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>r3voseto</title>

r3voseto

Class

real/windows/r3voseto.h

Library

r3win

Description:

Volume selector tool. Selects points/objects if they are inside/outside volumes defined by other geometric objects.

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Volumeselectortool

Class Identifier

R3CLID_VOLUMESELECTORTOOL - 1623

Methods

Attributes

</sect6>
<sect6> <title>r3walltool</title>

r3walltool

Class

plugins/objects/wall/r3walltool.h

Library

r3wall

Description:

Plant tool

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Walltool

Class Identifier

R3CLID_WALLTOOL - 2567

Methods

Attributes

Registration

int R3RegisterWallToolClass(R3APP *app);


r3appobj *

</sect6>
<sect6> <title>f3weld</title>

f3weld

Class

real/windows/f3weld.h

Library

r3win

Description:

Create fillet between two meshes

See Also

real/windows/r3tool.h

Super Class

r3Tool

R3CLID_TOOL

JavaScript

r3Weldtool

Class Identifier

R3CLID_WELDTOOL - 691

Methods

Attributes

</sect6>