View Issue Details

IDProjectCategoryView StatusLast Update
0016487Open CASCADEOCCT:Visualizationpublic2012-01-12 13:26
ReporterapvAssigned To 
PrioritynormalSeveritytrivial 
Status closedResolutionfixed 
OSSolaris 
Fixed in Version6.2.1 
Summary0016487: Aspect_TypeMapEntry initialization
DescriptionWhen we output our drawing to our Plotter, the following error occurs.

   --------------------------------------------------------------------------
   *** Abort *** an exception was raised, but no catch was found.
           ... The exception is:fefa5790 : Engine_MethodException: Exception:
   Driver from package Calco
   mp from CalcompIF
   (arg1:Viewer from V2d;arg2:CString from Standard;arg3:Real from
   Standard;arg4:Real from Standard;arg
   5:Real from Standard;arg6:Real from Standard;arg7:Real from
   Standard;arg8:TypeOfDraw from Calcomp;ar
   g9:TypeOfColor from Calcomp;arg10:Real from Standard);: raises the
   exception: fe620370 : Standard_Ov
   erflow: Floating Overflow
   --------------------------------------------------------------------------

   We have analyzed this problem and found the following workaround.

   (Before) Aspect_LineStyle linestyle = TypeMap()->Entry(TypeIndex+1).Type()
;NG

   (After Modified)

      Aspect_TypeMapEntry tEntry;
      tEntry = TypeMap()->Entry(TypeIndex+1);
      Aspect_LineStyle linestyle = tEntry.Type();OK

   It seems that the instance of Aspect_TypeMapEntry is not initialized.
Additional information
and documentation updates
Documentation remark, added by VTN 2007-10-31 10:22:30:

New features:
The documentation is not necessary.
TagsNo tags attached.
Test case number

Attached Files

  • OCC16487.tgz (1,612 bytes)

Activities

2007-07-05 10:30

 

OCC16487.tgz (1,612 bytes)

bugmaster

2007-07-05 12:32

administrator   ~0012770

Dear MKV,

Please test attached fix

Issue History

Date Modified Username Field Change
2007-07-05 12:31 bugmaster Assigned To bugmaster => vtn
2007-07-05 12:31 bugmaster Status new => assigned
2007-07-05 12:31 bugmaster Status assigned => resolved
2007-07-13 17:06 mkv Status resolved => tested
2007-07-27 16:59 bugmaster Status tested => verified
2009-06-23 18:37 bugmaster Status verified => closed
2009-06-23 18:37 bugmaster Resolution @0@ => fixed
2011-08-02 11:24 bugmaster Category OCCT:VIZ => OCCT:Visualization
2012-01-12 13:26 atp Assigned To vtn =>
2012-01-12 13:26 atp Description Updated
2012-01-12 13:26 atp Additional Information Updated