1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025808: Visualization - Initialization of Prs3d_PointAspect by custom Graphic3d_AspectMarker3d

the constructor accepting the Graphic3d_AspectMarker3d is implemented

constructor with graphic3d aspect and SetAspect() method are implemented for other aspect classes

patch for non-initialized class fields
This commit is contained in:
asl 2015-03-05 14:39:03 +03:00 committed by bugmaster
parent 50f32555af
commit 1a75746e71
10 changed files with 85 additions and 6 deletions

View File

@ -33,11 +33,15 @@ is
-- in representations of lengths. The lengths displayed -- in representations of lengths. The lengths displayed
-- are either on their own or in chamfers, fillets, -- are either on their own or in chamfers, fillets,
-- diameters and radii. -- diameters and radii.
Create (anAngle: PlaneAngle from Quantity; aLength: Length from Quantity) Create (anAngle: PlaneAngle from Quantity; aLength: Length from Quantity)
returns ArrowAspect from Prs3d; returns ArrowAspect from Prs3d;
--- Purpose: Constructs a framework to display an arrow with a --- Purpose: Constructs a framework to display an arrow with a
-- shaft of the length aLength and having a head with -- shaft of the length aLength and having a head with
-- sides at the angle anAngle from each other. -- sides at the angle anAngle from each other.
Create( theAspect: AspectLine3d from Graphic3d )
returns ArrowAspect from Prs3d;
SetAngle(me: mutable; anAngle: PlaneAngle from Quantity) SetAngle(me: mutable; anAngle: PlaneAngle from Quantity)
---Purpose: defines the angle of the arrows. ---Purpose: defines the angle of the arrows.
@ -62,6 +66,8 @@ is
Aspect(me) returns AspectLine3d from Graphic3d; Aspect(me) returns AspectLine3d from Graphic3d;
SetAspect( me: mutable; theAspect: AspectLine3d from Graphic3d );
fields fields
myArrowAspect: AspectLine3d from Graphic3d; myArrowAspect: AspectLine3d from Graphic3d;
myAngle: PlaneAngle from Quantity; myAngle: PlaneAngle from Quantity;

View File

@ -30,6 +30,12 @@ Prs3d_ArrowAspect::Prs3d_ArrowAspect (const Quantity_PlaneAngle anAngle,
Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0); Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0);
} }
Prs3d_ArrowAspect::Prs3d_ArrowAspect( const Handle( Graphic3d_AspectLine3d )& theAspect )
: myAngle(M_PI/180.*10), myLength(1.)
{
myArrowAspect = theAspect;
}
void Prs3d_ArrowAspect::SetAngle ( const Quantity_PlaneAngle anAngle) { void Prs3d_ArrowAspect::SetAngle ( const Quantity_PlaneAngle anAngle) {
Prs3d_InvalidAngle_Raise_if ( anAngle <= 0. || Prs3d_InvalidAngle_Raise_if ( anAngle <= 0. ||
anAngle >= M_PI /2. , ""); anAngle >= M_PI /2. , "");
@ -49,6 +55,7 @@ Quantity_Length Prs3d_ArrowAspect::Length () const
return myLength; return myLength;
} }
void Prs3d_ArrowAspect::SetColor(const Quantity_Color &aColor) { void Prs3d_ArrowAspect::SetColor(const Quantity_Color &aColor) {
myArrowAspect->SetColor(aColor); myArrowAspect->SetColor(aColor);
} }
@ -60,3 +67,10 @@ void Prs3d_ArrowAspect::SetColor(const Quantity_NameOfColor aColor) {
Handle(Graphic3d_AspectLine3d) Prs3d_ArrowAspect::Aspect() const { Handle(Graphic3d_AspectLine3d) Prs3d_ArrowAspect::Aspect() const {
return myArrowAspect; return myArrowAspect;
} }
void Prs3d_ArrowAspect::SetAspect( const Handle( Graphic3d_AspectLine3d )& theAspect )
{
myArrowAspect = theAspect;
}

View File

@ -49,6 +49,9 @@ is
aType: TypeOfLine from Aspect; aType: TypeOfLine from Aspect;
aWidth: Real from Standard) aWidth: Real from Standard)
returns LineAspect from Prs3d; returns LineAspect from Prs3d;
Create( theAspect: AspectLine3d from Graphic3d )
returns LineAspect from Prs3d;
SetColor (me: mutable; aColor: Color from Quantity) is static; SetColor (me: mutable; aColor: Color from Quantity) is static;
@ -72,6 +75,8 @@ is
is static; is static;
--- Purpose: Returns the line aspect. This is defined as the set of --- Purpose: Returns the line aspect. This is defined as the set of
-- color, type and thickness attributes. -- color, type and thickness attributes.
SetAspect( me: mutable; theAspect: AspectLine3d from Graphic3d );
fields fields

View File

@ -28,6 +28,13 @@ Prs3d_LineAspect::Prs3d_LineAspect (const Quantity_NameOfColor aColor,
(Quantity_Color(aColor),aType,aWidth); (Quantity_Color(aColor),aType,aWidth);
} }
Prs3d_LineAspect::Prs3d_LineAspect( const Handle( Graphic3d_AspectLine3d )& theAspect )
{
myAspect = theAspect;
}
void Prs3d_LineAspect::SetColor(const Quantity_Color &aColor) { void Prs3d_LineAspect::SetColor(const Quantity_Color &aColor) {
myAspect->SetColor(aColor); myAspect->SetColor(aColor);
} }
@ -47,3 +54,8 @@ void Prs3d_LineAspect::SetWidth(const Standard_Real aWidth){
Handle (Graphic3d_AspectLine3d) Prs3d_LineAspect::Aspect () const { Handle (Graphic3d_AspectLine3d) Prs3d_LineAspect::Aspect () const {
return myAspect; return myAspect;
} }
void Prs3d_LineAspect::SetAspect( const Handle( Graphic3d_AspectLine3d )& theAspect )
{
myAspect = theAspect;
}

View File

@ -50,6 +50,8 @@ is
returns PointAspect from Prs3d; returns PointAspect from Prs3d;
---Purpose: defines only the urer defined marker point. ---Purpose: defines only the urer defined marker point.
Create( theAspect : AspectMarker3d from Graphic3d )
returns PointAspect from Prs3d;
SetColor (me: mutable; aColor: Color from Quantity) is static; SetColor (me: mutable; aColor: Color from Quantity) is static;
@ -70,6 +72,8 @@ is
Aspect(me) returns AspectMarker3d from Graphic3d Aspect(me) returns AspectMarker3d from Graphic3d
is static; is static;
SetAspect( me: mutable; theAspect: AspectMarker3d from Graphic3d );
GetTextureSize (me:mutable; AWidth : out Integer from Standard; GetTextureSize (me:mutable; AWidth : out Integer from Standard;
AHeight : out Integer from Standard); AHeight : out Integer from Standard);

View File

@ -37,10 +37,17 @@ Prs3d_PointAspect::Prs3d_PointAspect (const Quantity_Color &aColor,
(aColor,aWidth,aHeight,aTexture); (aColor,aWidth,aHeight,aTexture);
} }
Prs3d_PointAspect::Prs3d_PointAspect( const Handle( Graphic3d_AspectMarker3d )& theAspect )
{
myAspect = theAspect;
}
void Prs3d_PointAspect::SetColor(const Quantity_Color &aColor) { void Prs3d_PointAspect::SetColor(const Quantity_Color &aColor) {
myAspect->SetColor(aColor); myAspect->SetColor(aColor);
} }
void Prs3d_PointAspect::SetColor(const Quantity_NameOfColor aColor) { void Prs3d_PointAspect::SetColor(const Quantity_NameOfColor aColor) {
myAspect->SetColor(Quantity_Color(aColor)); myAspect->SetColor(Quantity_Color(aColor));
} }
@ -57,6 +64,11 @@ Handle (Graphic3d_AspectMarker3d) Prs3d_PointAspect::Aspect () const {
return myAspect; return myAspect;
} }
void Prs3d_PointAspect::SetAspect( const Handle( Graphic3d_AspectMarker3d )& theAspect )
{
myAspect = theAspect;
}
void Prs3d_PointAspect::GetTextureSize(Standard_Integer& AWidth, Standard_Integer& AHeight) void Prs3d_PointAspect::GetTextureSize(Standard_Integer& AWidth, Standard_Integer& AHeight)
{ {
myAspect->GetTextureSize( AWidth, AHeight); myAspect->GetTextureSize( AWidth, AHeight);

View File

@ -35,6 +35,9 @@ is
Create Create
---Purpose: Constructs an empty framework to display shading. ---Purpose: Constructs an empty framework to display shading.
returns ShadingAspect from Prs3d; returns ShadingAspect from Prs3d;
Create( theAspect: AspectFillArea3d from Graphic3d )
returns ShadingAspect from Prs3d;
SetColor (me: mutable; aColor: Color from Quantity; SetColor (me: mutable; aColor: Color from Quantity;
aModel: TypeOfFacingModel from Aspect = Aspect_TOFM_BOTH_SIDE) aModel: TypeOfFacingModel from Aspect = Aspect_TOFM_BOTH_SIDE)
@ -61,9 +64,6 @@ is
--- Purpose: Change the polygons transparency value. --- Purpose: Change the polygons transparency value.
-- Warning : aValue must be in the range 0,1. 0 is the default (NO transparent) -- Warning : aValue must be in the range 0,1. 0 is the default (NO transparent)
SetAspect(me:mutable; Asp : AspectFillArea3d from Graphic3d);
--- Purpose: Change the polygons aspect properties.
Color (me; aModel: TypeOfFacingModel from Aspect = Aspect_TOFM_FRONT_SIDE) Color (me; aModel: TypeOfFacingModel from Aspect = Aspect_TOFM_FRONT_SIDE)
returns Color from Quantity is static; returns Color from Quantity is static;
--- Purpose: Returns the polygons color. --- Purpose: Returns the polygons color.
@ -80,6 +80,8 @@ is
Aspect (me) returns AspectFillArea3d from Graphic3d; Aspect (me) returns AspectFillArea3d from Graphic3d;
--- Purpose: Returns the polygons aspect properties. --- Purpose: Returns the polygons aspect properties.
SetAspect( me: mutable; theAspect: AspectFillArea3d from Graphic3d );
fields fields

View File

@ -38,6 +38,10 @@ Prs3d_ShadingAspect::Prs3d_ShadingAspect () {
aMat); aMat);
} }
Prs3d_ShadingAspect::Prs3d_ShadingAspect( const Handle( Graphic3d_AspectFillArea3d )& theAspect )
{
myAspect = theAspect;
}
//======================================================================= //=======================================================================
//function : SetColor //function : SetColor
@ -171,12 +175,11 @@ Standard_Real aValue(0.);
//purpose : //purpose :
//======================================================================= //=======================================================================
void Prs3d_ShadingAspect::SetAspect(const Handle(Graphic3d_AspectFillArea3d)& Asp) void Prs3d_ShadingAspect::SetAspect( const Handle( Graphic3d_AspectFillArea3d )& theAspect )
{ {
myAspect=Asp; myAspect = theAspect;
} }
Handle (Graphic3d_AspectFillArea3d) Prs3d_ShadingAspect::Aspect () const { Handle (Graphic3d_AspectFillArea3d) Prs3d_ShadingAspect::Aspect () const {
return myAspect; return myAspect;
} }

View File

@ -33,6 +33,9 @@ is
Create returns TextAspect from Prs3d; Create returns TextAspect from Prs3d;
--- Purpose: Constructs an empty framework for defining display attributes of text. --- Purpose: Constructs an empty framework for defining display attributes of text.
Create( theAspect: AspectText3d from Graphic3d )
returns TextAspect from Prs3d;
SetColor(me: mutable; aColor: Color from Quantity); SetColor(me: mutable; aColor: Color from Quantity);
SetColor(me: mutable; aColor: NameOfColor from Quantity); SetColor(me: mutable; aColor: NameOfColor from Quantity);
@ -100,6 +103,8 @@ is
-- - font -- - font
-- - height/width ratio, that is, the expansion factor, and -- - height/width ratio, that is, the expansion factor, and
-- - space between characters. -- - space between characters.
SetAspect( me: mutable; theAspect: AspectText3d from Graphic3d );
fields fields
myTextAspect: AspectText3d from Graphic3d; myTextAspect: AspectText3d from Graphic3d;

View File

@ -32,6 +32,17 @@ Prs3d_TextAspect::Prs3d_TextAspect ()
0.); 0.);
} }
Prs3d_TextAspect::Prs3d_TextAspect( const Handle( Graphic3d_AspectText3d )& theAspect )
: myAngle(0.),
myHeight(16.),
myHorizontalJustification(Graphic3d_HTA_LEFT),
myVerticalJustification(Graphic3d_VTA_BOTTOM),
myOrientation(Graphic3d_TP_RIGHT)
{
myTextAspect = theAspect;
}
void Prs3d_TextAspect::SetColor(const Quantity_Color &aColor) { void Prs3d_TextAspect::SetColor(const Quantity_Color &aColor) {
myTextAspect->SetColor(aColor); myTextAspect->SetColor(aColor);
} }
@ -87,3 +98,8 @@ Graphic3d_TextPath Prs3d_TextAspect::Orientation () const {return myOrientation;
Handle(Graphic3d_AspectText3d) Prs3d_TextAspect::Aspect() const { Handle(Graphic3d_AspectText3d) Prs3d_TextAspect::Aspect() const {
return myTextAspect; return myTextAspect;
} }
void Prs3d_TextAspect::SetAspect( const Handle( Graphic3d_AspectText3d )& theAspect )
{
myTextAspect = theAspect;
}