EyeshotUltimateDemo11 (analysis done 8 days ago, Tue 05 Dec 14:59 most recent)

WARNING: This code rule is violated. 605 methods on 29929 tested match the condition.
// <Name>API Breaking Changes: Methods</Name>
warnif count > 0 from m in codeBase.OlderVersion().Application.Methods
where m.IsPubliclyVisible && 

     
// The method has been removed, it was not tagged as obsolete
     // and its parent type hasn't been removed …
     ( ( m.WasRemoved() && 
        
!m.ParentType.WasRemoved() && 
        
!m.IsObsolete )

        
// … or the method is not publicly visible anymore
     || (!m.WasRemoved() && !m.NewerVersion().IsPubliclyVisible) 

        
// … or the method return type has changed
     || (!m.WasRemoved() && m.ReturnType != null && m.NewerVersion().ReturnType != null
                         
&& m.ReturnType.FullName != m.NewerVersion().ReturnType.FullName)        
      
)

//--------------------------------------
// Handle special case: if between two versions a regular property becomes 
// an auto-property (or vice-versa) the property getter/setter method have 
// a different value for IMethod.IsGeneratedByCompiler
// since auto-property getter/setter are marked as generated by the compiler.
//
// If a method IsGeneratedByCompiler value changes between two versions, 
// NDepend doesn't pair the newer/older occurences of the method.
//
// Hence in such situation, a public method is seen as added 
// and a public method is seen as removed, but the API is not broken!
// The equivalentMethod-check below avoids reporting such 
// API Breaking Change false-positive.
let equivalentMethod = m.WasRemoved() && m.ParentType.IsPresentInBothBuilds() ?
   
m.ParentType.NewerVersion().Methods
   
.FirstOrDefault(m1 => 
       
m1.IsPubliclyVisible &&
       
m1.Name == m.Name &&
       
m1.IsGeneratedByCompiler != m.IsGeneratedByCompiler &&
      
(m1.ReturnType == null || m.ReturnType == null || m1.ReturnType.FullName == m.ReturnType.FullName)
    
)
    
: null
where equivalentMethod == null
//--------------------------------------


select new { 
   
m,
   
NewVisibility = 
      
(m.WasRemoved() ? " " : 
       
m.NewerVersion().Visibility.ToString()),
 
//  Debt = 10.ToMinutes().ToDebt(),
 //  Severity = Severity.High
}

//<Description>
// This rule is executed only if a *baseline for comparison* is defined (*diff mode*).
//
// This rule warns if a method publicly visible in the *baseline*, 
// is not publicly visible anymore or if it has been removed.
// Clients code using such method will be broken.
//</Description>

//<HowToFix>
// Make sure that public methods that used to be presented to
// clients, still remain public now, and in the future.
//
// If a public method must really be removed, you can tag it
// with *System.ObsoleteAttribute* with a *workaround message*
// during a few public releases, until it gets removed definitely.
// Notice that this rule doesn't match methods removed that were
// tagged as obsolete.
//
// Issues of this rule have a severity equal to **High**
// because an API Breaking change can provoque significant
// friction with consumers of the API.
//</HowToFix>
605 methodsNewVisibilityFull Name
SetRenderTarget(TextureBase,TextureBase)InternaldevDept.Graphics.D3DRenderContext .SetRenderTarget(TextureBase,TextureBase )
PopRenderTargets()InternaldevDept.Graphics.D3DRenderContext .PopRenderTargets()
PushRenderTargets()InternaldevDept.Graphics.D3DRenderContext .PushRenderTargets()
ConvertColor(Color)PublicdevDept.Graphics.RenderContextUtility .ConvertColor(Color)
AreEqual(Color,Color)devDept.Graphics.RenderContextUtility .AreEqual(Color,Color)
ConvertColorTable(Color[])devDept.Graphics.RenderContextUtility .ConvertColorTable(Color[])
ConvertImage(Image)devDept.Graphics.RenderContextUtility .ConvertImage(Image)
ConvertImage(Bitmap)PublicdevDept.Graphics.RenderContextUtility .ConvertImage(Bitmap)
DrawDepthTexture(Size)devDept.Graphics.RenderContextBase .DrawDepthTexture(Size)
SetRenderTarget(TextureBase,TextureBase)InternaldevDept.Graphics.RenderContextBase .SetRenderTarget(TextureBase,TextureBase )
get_environmentMappingTexture()devDept.Graphics.Material .get_environmentMappingTexture()
.ctor(Color,Color,Single,Single,Image)devDept.Graphics.Material..ctor(Color ,Color,Single,Single,Image)
get_BottomColor()PublicdevDept.Graphics.BackgroundSettings .get_BottomColor()
set_BottomColor(Color)devDept.Graphics.BackgroundSettings .set_BottomColor(Color)
get_IntermediateColor()PublicdevDept.Graphics.BackgroundSettings .get_IntermediateColor()
set_IntermediateColor(Color)devDept.Graphics.BackgroundSettings .set_IntermediateColor(Color)
get_TopColor()PublicdevDept.Graphics.BackgroundSettings .get_TopColor()
set_TopColor(Color)devDept.Graphics.BackgroundSettings .set_TopColor(Color)
get_Image()devDept.Graphics.BackgroundSettings .get_Image()
set_Image(Image)devDept.Graphics.BackgroundSettings .set_Image(Image)
.ctor(backgroundStyleType,Color,Color ,Color,Double,Image,colorThemeType ,Double)devDept.Graphics.BackgroundSettings. .ctor(backgroundStyleType,Color,Color ,Color,Double,Image,colorThemeType ,Double)
.ctor(backgroundStyleType,Color,Color ,Color,Double,Image)devDept.Graphics.BackgroundSettings. .ctor(backgroundStyleType,Color,Color ,Color,Double,Image)
.ctor(Int32,String,String,Hashtable)PublicStepTranslator.Offset_Surface..ctor (Int32,String,String,Hashtable)
.ctor(StepSurface,Double)PublicStepTranslator.Offset_Surface..ctor (StepSurface,Double)
.ctor()PublicStepTranslator.FaceBrep..ctor()
.ctor(List<CartesianPoint>)PublicStepTranslator.Polyline..ctor(List <CartesianPoint>)
get_Layer()PublicStepTranslator.Polyline.get_Layer()
set_Layer(String)PublicStepTranslator.Polyline.set_Layer(String )
WritePolyLine()PublicStepTranslator.Polyline.WritePolyLine()
.ctor(Int32,String,String,Hashtable)PublicStepTranslator.Poly_Loop..ctor(Int32 ,String,String,Hashtable)
.ctor(StepCurve,List<StepEntity>)PublicStepTranslator.Surface_Curve..ctor (StepCurve,List<StepEntity>)
.ctor()PublicStepTranslator.Shell..ctor()
get_getlistofpoints()PublicStepTranslator.Shell.get_getlistofpoints ()
get_getlistofCurves()PublicStepTranslator.Shell.get_getlistofCurves ()
setlistofCurve(List<StepCurve>)PublicStepTranslator.Shell.setlistofCurve(List <StepCurve>)
get_getlistofSurafces()PublicStepTranslator.Shell .get_getlistofSurafces()
setlistofPoints(List<StepPoint>)PublicStepTranslator.Shell.setlistofPoints (List<StepPoint>)
setlistofSurafces(List<StepSurface>)PublicStepTranslator.Shell.setlistofSurafces (List<StepSurface>)
get_Surfaces()PublicStepTranslator.solidData.get_Surfaces()
.ctor()PublicStepTranslator.solidData..ctor()
getuniqueEdge_CurveTbl()PublicStepTranslator.solidData .getuniqueEdge_CurveTbl()
getuniqueVertex_PointTbl()PublicStepTranslator.solidData .getuniqueVertex_PointTbl()
setSurfaceData(List<StepSurface>)PublicStepTranslator.solidData.setSurfaceData (List<StepSurface>)
setSurfaceData(StepSurface)PublicStepTranslator.solidData.setSurfaceData (StepSurface)
getSurfaceData()PublicStepTranslator.solidData.getSurfaceData( )
getEdge_CurveEntity(Int32)PublicStepTranslator.solidData .getEdge_CurveEntity(Int32)
getPoint_VertexEntity(Int32)PublicStepTranslator.solidData .getPoint_VertexEntity(Int32)
.ctor(StepCurve,Double,Double,Boolean)PublicStepTranslator.Trimmed_Curve..ctor (StepCurve,Double,Double,Boolean)
.ctor(StepCurve,Double[],Double[] ,Boolean)PublicStepTranslator.Trimmed_Curve..ctor (StepCurve,Double[],Double[],Boolean)
get_Layer()PublicStepTranslator.Trimmed_Curve.get_Layer()
set_Layer(String)PublicStepTranslator.Trimmed_Curve.set_Layer (String)
get_IsCarteisian()PublicStepTranslator.Trimmed_Curve .get_IsCarteisian()
.ctor()PublicStepTranslator._3DDrawing..ctor()
.ctor()PublicStepTranslator.StepBlockRef..ctor()
.ctor(Int32)PublicStepTranslator.StepBlockRef..ctor(Int32)
SetBlockName(String)PublicStepTranslator.StepBlockRef.SetBlockName (String)
GetBlock(String&)PublicStepTranslator.StepBlockRef.GetBlock (String&)
GetBlockID(Int32&)PublicStepTranslator.StepBlockRef.GetBlockID (Int32&)
SetData(Double[],Double[],Double[] ,Double[],Double[],Double[])PublicStepTranslator.StepBlockRef.SetData (Double[],Double[],Double[],Double[] ,Double[],Double[])
GetData(String&,Double[]&,Double[]& ,Double[]&,Double[]&,Double[]&,Double[]& )PublicStepTranslator.StepBlockRef.GetData (String&,Double[]&,Double[]&,Double[]& ,Double[]&,Double[]&,Double[]&)
GetName()PublicStepTranslator.StepBlockRef.GetName()
get_PartName()PublicStepTranslator.StepBlockRef.get_PartName ()
set_PartName(String)PublicStepTranslator.StepBlockRef.set_PartName (String)
.ctor(Int32,List<Double>,List<StepPoint> )PublicStepTranslator.BoundedCurve..ctor(Int32 ,List<Double>,List<StepPoint>)
get_boundCurveIsType()PublicStepTranslator.BoundedCurve .get_boundCurveIsType()
set_boundCurveIsType (BoundedCurve+boundedCurveIsOfType)PublicStepTranslator.BoundedCurve .set_boundCurveIsType (BoundedCurve+boundedCurveIsOfType)
get_IsQuasiCurve()PublicStepTranslator.BoundedCurve .get_IsQuasiCurve()
GetID(Int32&)PublicStepTranslator.StepEntity.GetID(Int32&)
FindEntity(Int32,Hashtable)ProtectedStepTranslator.StepEntity.FindEntity (Int32,Hashtable)
GetColorFromFace(Double[]&,String&)PublicStepTranslator.StepEntity .GetColorFromFace(Double[]&,String&)
.ctor(Int32,String,String,Hashtable)PublicStepTranslator.StepLoop..ctor(Int32 ,String,String,Hashtable)
.ctor(Int32[])PublicStepTranslator.StepLoop..ctor(Int32[])
.ctor(Int32,String,String,Hashtable)PublicStepTranslator.StepOrientedEdge..ctor (Int32,String,String,Hashtable)
.ctor(Int32,Int32,Boolean)PublicStepTranslator.StepOrientedEdge..ctor (Int32,Int32,Boolean)
get_Coordinates()PublicStepTranslator.CartesianPoint .get_Coordinates()
set_Coordinates(Double[])PublicStepTranslator.CartesianPoint .set_Coordinates(Double[])
.ctor(Double[])PublicStepTranslator.CartesianPoint..ctor (Double[])
GetPoints(List<StepPoint>&)PublicStepTranslator.StepPointCloud.GetPoints (List<StepPoint>&)
get_Person()PublicStepTranslator.ProductInfo.get_Person()
set_Person(String)PublicStepTranslator.ProductInfo.set_Person (String)
get_Organisation()PublicStepTranslator.ProductInfo .get_Organisation()
set_Organisation(String)PublicStepTranslator.ProductInfo .set_Organisation(String)
get_ApprovalStatus()PublicStepTranslator.ProductInfo .get_ApprovalStatus()
set_ApprovalStatus(String)PublicStepTranslator.ProductInfo .set_ApprovalStatus(String)
get_LocalTime()PublicStepTranslator.ProductInfo.get_LocalTime ()
set_LocalTime(String)PublicStepTranslator.ProductInfo.set_LocalTime (String)
get_CalenderDate()PublicStepTranslator.ProductInfo .get_CalenderDate()
set_CalenderDate(String)PublicStepTranslator.ProductInfo .set_CalenderDate(String)
get_PersonAndOrganizationRole()PublicStepTranslator.ProductInfo .get_PersonAndOrganizationRole()
set_PersonAndOrganizationRole(String)PublicStepTranslator.ProductInfo .set_PersonAndOrganizationRole(String)
get_SecurityClassificationLevel()PublicStepTranslator.ProductInfo .get_SecurityClassificationLevel()
set_SecurityClassificationLevel(String)PublicStepTranslator.ProductInfo .set_SecurityClassificationLevel(String)
get_PartName()PublicStepTranslator.ProductInfo.get_PartName( )
set_PartName(String)PublicStepTranslator.ProductInfo.set_PartName (String)
get_Surfaces()PublicStepTranslator.StepBlock.get_Surfaces()
get_IsReference()PublicStepTranslator.StepBlock.get_IsReference ()
set_IsReference(Boolean)PublicStepTranslator.StepBlock.set_IsReference (Boolean)
get_blockRefs()PublicStepTranslator.StepBlock.get_blockRefs()
get_ListOfBlock()PublicStepTranslator.StepBlock.get_ListOfBlock ()
get_ListOfBREP()PublicStepTranslator.StepBlock.get_ListOfBREP( )
get_ListOfFacetedBrep()PublicStepTranslator.StepBlock .get_ListOfFacetedBrep()
get_Name()PublicStepTranslator.StepBlock.get_Name()
set_Name(String)PublicStepTranslator.StepBlock.set_Name(String )
get_Layer()PublicStepTranslator.StepBlock.get_Layer()
set_Layer(String)PublicStepTranslator.StepBlock.set_Layer (String)
.ctor()PublicStepTranslator.StepBlock..ctor()
ToString()PublicStepTranslator.StepBlock.ToString()
get_ID()PublicStepTranslator.StepCurve.get_ID()
set_ID(Int32)PublicStepTranslator.StepCurve.set_ID(Int32)
get_StartPoint()PublicStepTranslator.StepCurve.get_StartPoint( )
set_StartPoint(StepPoint)PublicStepTranslator.StepCurve.set_StartPoint (StepPoint)
get_EndPoint()PublicStepTranslator.StepCurve.get_EndPoint()
set_EndPoint(StepPoint)PublicStepTranslator.StepCurve.set_EndPoint (StepPoint)
get_CurveType()PublicStepTranslator.StepCurve.get_CurveType()
set_CurveType(CurveGeomType)PublicStepTranslator.StepCurve.set_CurveType (CurveGeomType)
.ctor()PublicStepTranslator.StepCurve..ctor()
.ctor(StepEntity,Int32,Int32,Int32)PublicStepTranslator.StepCurve..ctor (StepEntity,Int32,Int32,Int32)
GetEndPoints(Double[]&,Double[]&)PublicStepTranslator.StepCurve.GetEndPoints (Double[]&,Double[]&)
GetLineData(Double[]&,Double&,Double[]&)PublicStepTranslator.StepCurve.GetLineData (Double[]&,Double&,Double[]&)
GetLineData(Double[]&,Double[]&)PublicStepTranslator.StepCurve.GetLineData (Double[]&,Double[]&)
GetPolyLineData(List<CartesianPoint>&)PublicStepTranslator.StepCurve.GetPolyLineData (List<CartesianPoint>&)
SetLineData(Double[],Double,Double[])PublicStepTranslator.StepCurve.SetLineData (Double[],Double,Double[])
SetLineData(Double[],Double,Double[] ,Int32)PublicStepTranslator.StepCurve.SetLineData (Double[],Double,Double[],Int32)
SetLineData(Double[],Double[])PublicStepTranslator.StepCurve.SetLineData (Double[],Double[])
SetPolyLineData(List<CartesianPoint>)PublicStepTranslator.StepCurve.SetPolyLineData (List<CartesianPoint>)
GetSeamCurveData(StepCurve&,List <StepEntity>&)PublicStepTranslator.StepCurve .GetSeamCurveData(StepCurve&,List <StepEntity>&)
SetSeamCurveData(StepCurve,List <StepEntity>)PublicStepTranslator.StepCurve .SetSeamCurveData(StepCurve,List <StepEntity>)
GetParabolaData(Double[]&,Double[]& ,Double[]&,Double&)PublicStepTranslator.StepCurve.GetParabolaData (Double[]&,Double[]&,Double[]&,Double&)
GetHyperbolaData(Double[]&,Double[]& ,Double[]&,Double&,Double&)PublicStepTranslator.StepCurve .GetHyperbolaData(Double[]&,Double[]& ,Double[]&,Double&,Double&)
SetParabolaData(Double[],Double[] ,Double[],Double)PublicStepTranslator.StepCurve.SetParabolaData (Double[],Double[],Double[],Double)
SetHyperbolaData(Double[],Double[] ,Double[],Double,Double)PublicStepTranslator.StepCurve .SetHyperbolaData(Double[],Double[] ,Double[],Double,Double)
GetCircleData(Double[]&,Double& ,Double[]&,Double[]&,Double[]&)PublicStepTranslator.StepCurve.GetCircleData (Double[]&,Double&,Double[]&,Double[]& ,Double[]&)
SetCircleData(Double[],Double,Double[] ,Double[])PublicStepTranslator.StepCurve.SetCircleData (Double[],Double,Double[],Double[])
SetTrimmedCurveData(StepCurve,Double ,Double,Boolean)PublicStepTranslator.StepCurve .SetTrimmedCurveData(StepCurve,Double ,Double,Boolean)
SetTrimmedCurveData(StepCurve,Double[] ,Double[],Boolean)PublicStepTranslator.StepCurve .SetTrimmedCurveData(StepCurve,Double[] ,Double[],Boolean)
GetEllipseData(Double[]&,Double&,Double& ,Double[]&,Double[]&,Double[]&)PublicStepTranslator.StepCurve.GetEllipseData (Double[]&,Double&,Double&,Double[]& ,Double[]&,Double[]&)
SetEllipseData(Double[],Double,Double ,Double[],Double[])PublicStepTranslator.StepCurve.SetEllipseData (Double[],Double,Double,Double[] ,Double[])
GetSplineData(Int32&,List<Double>&,List <StepPoint>&)PublicStepTranslator.StepCurve.GetSplineData (Int32&,List<Double>&,List<StepPoint>&)
GetQuasiUniformData(Int32&,List <StepPoint>&)PublicStepTranslator.StepCurve .GetQuasiUniformData(Int32&,List <StepPoint>&)
GetIntersectionCurveData(StepCurve)PublicStepTranslator.StepCurve .GetIntersectionCurveData(StepCurve)
isTrimmedCurveCarteisian()PublicStepTranslator.StepCurve .isTrimmedCurveCarteisian()
GetTrimmedCurveData(StepCurve&,Double& ,Double&,Boolean&)PublicStepTranslator.StepCurve .GetTrimmedCurveData(StepCurve&,Double& ,Double&,Boolean&)
GetTrimmedCurveData(StepCurve&,Double[]& ,Double[]&,Boolean&)PublicStepTranslator.StepCurve .GetTrimmedCurveData(StepCurve& ,Double[]&,Double[]&,Boolean&)
SetSplineData(Int32,List<Double>,List <StepPoint>)PublicStepTranslator.StepCurve.SetSplineData (Int32,List<Double>,List<StepPoint>)
SetBoundedCurveData(Int32,List<Double> ,List<StepPoint>)PublicStepTranslator.StepCurve .SetBoundedCurveData(Int32,List<Double> ,List<StepPoint>)
GetSurfaceCurveData(StepCurve&,List <StepEntity>&)PublicStepTranslator.StepCurve .GetSurfaceCurveData(StepCurve&,List <StepEntity>&)
GetPCurveData(StepSurface&,StepDefRep&)PublicStepTranslator.StepCurve.GetPCurveData (StepSurface&,StepDefRep&)
SetSurfaceCurveData(StepCurve,List <StepEntity>)PublicStepTranslator.StepCurve .SetSurfaceCurveData(StepCurve,List <StepEntity>)
SetPCurveData(StepSurface,StepDefRep)PublicStepTranslator.StepCurve.SetPCurveData (StepSurface,StepDefRep)
GetColorInfo(Double[]&,String&)PublicStepTranslator.StepCurve.GetColorInfo (Double[]&,String&)
GetColorFromCurve(Double[]&,String&)PublicStepTranslator.StepCurve .GetColorFromCurve(Double[]&,String&)
get_Coordinates()PublicStepTranslator.StepPoint.get_Coordinates ()
get_ID()PublicStepTranslator.StepPoint.get_ID()
set_ID(Int32)PublicStepTranslator.StepPoint.set_ID(Int32)
.ctor(Double,Double,Double,Double)PublicStepTranslator.StepPoint..ctor(Double ,Double,Double,Double)
.ctor(Double,Double,Double,Double,Int32)PublicStepTranslator.StepPoint..ctor(Double ,Double,Double,Double,Int32)
get_SurfaceType()PublicStepTranslator.StepSurface .get_SurfaceType()
set_SurfaceType(SurfaceGeomType)PublicStepTranslator.StepSurface .set_SurfaceType(SurfaceGeomType)
.ctor()PublicStepTranslator.StepSurface..ctor()
get_Sense()PublicStepTranslator.StepSurface.get_Sense()
set_Sense(Boolean)PublicStepTranslator.StepSurface.set_Sense (Boolean)
get_Index()PublicStepTranslator.StepSurface.get_Index()
.ctor(StepEntity,Boolean,StepLoop[] ,Boolean[])PublicStepTranslator.StepSurface..ctor (StepEntity,Boolean,StepLoop[],Boolean[] )
GetPlaneData(Double[]&,Double[]& ,Double[]&)PublicStepTranslator.StepSurface.GetPlaneData (Double[]&,Double[]&,Double[]&)
SetSurfaceSence(Boolean)PublicStepTranslator.StepSurface .SetSurfaceSence(Boolean)
GetExtrusionSurfaceData(StepCurve& ,Double&,Double[]&)PublicStepTranslator.StepSurface .GetExtrusionSurfaceData(StepCurve& ,Double&,Double[]&)
SetExtrusionSurfaceData(StepCurve& ,Double&,Double[]&)PublicStepTranslator.StepSurface .SetExtrusionSurfaceData(StepCurve& ,Double&,Double[]&)
GetSurfaceOfRevolutionData(StepCurve& ,Double[]&,Double[]&)PublicStepTranslator.StepSurface .GetSurfaceOfRevolutionData(StepCurve& ,Double[]&,Double[]&)
SetPlaneData(Double[],Double[])PublicStepTranslator.StepSurface.SetPlaneData (Double[],Double[])
SetPlaneData(Double[],Double[],Double[])PublicStepTranslator.StepSurface.SetPlaneData (Double[],Double[],Double[])
GetNurbsData(Int32&,Int32&,List<Double>& ,List<Double>&,List<List<StepPoint>>&)PublicStepTranslator.StepSurface.GetNurbsData (Int32&,Int32&,List<Double>&,List<Double >&,List<List<StepPoint>>&)
GetQuasiUniformData(Int32&,Int32&,List <List<StepPoint>>&)PublicStepTranslator.StepSurface .GetQuasiUniformData(Int32&,Int32&,List <List<StepPoint>>&)
SetBSplineSurfaceData(Int32,Int32,List <Double>,List<Double>,List<List <StepPoint>>)PublicStepTranslator.StepSurface .SetBSplineSurfaceData(Int32,Int32,List <Double>,List<Double>,List<List <StepPoint>>)
SetQuasiUniformSurfaceData(Int32,Int32 ,List<List<StepPoint>>)PublicStepTranslator.StepSurface .SetQuasiUniformSurfaceData(Int32,Int32 ,List<List<StepPoint>>)
SetBoundedSurfaceData(Int32,Int32,List <Double>,List<Double>,List<List <StepPoint>>)PublicStepTranslator.StepSurface .SetBoundedSurfaceData(Int32,Int32,List <Double>,List<Double>,List<List <StepPoint>>)
SetSurfaceOfRevolutionData(StepCurve ,Double[],Double[])PublicStepTranslator.StepSurface .SetSurfaceOfRevolutionData(StepCurve ,Double[],Double[])
SetSphereData(Double[],Double,Double[] ,Double[])PublicStepTranslator.StepSurface.SetSphereData (Double[],Double,Double[],Double[])
SetTorusData(Double[],Double,Double ,Double[],Double[])PublicStepTranslator.StepSurface.SetTorusData (Double[],Double,Double,Double[] ,Double[])
SetDegeneratedTorusData(Double[],Double ,Double,Double[],Double[],Boolean)PublicStepTranslator.StepSurface .SetDegeneratedTorusData(Double[],Double ,Double,Double[],Double[],Boolean)
SetConeData(Double[],Double[],Double[] ,Double,Double)PublicStepTranslator.StepSurface.SetConeData (Double[],Double[],Double[],Double ,Double)
SetCylinderData(Double[],Double[] ,Double[],Double)PublicStepTranslator.StepSurface .SetCylinderData(Double[],Double[] ,Double[],Double)
GetCylinderData(Double[]&,Double& ,Double[]&,Double[]&)PublicStepTranslator.StepSurface .GetCylinderData(Double[]&,Double& ,Double[]&,Double[]&)
GetConeData(Double[]&,Double&,Double[]& ,Double[]&,Double&)PublicStepTranslator.StepSurface.GetConeData (Double[]&,Double&,Double[]&,Double[]& ,Double&)
GetSphereData(Double[]&,Double& ,Double[]&,Double[]&)PublicStepTranslator.StepSurface.GetSphereData (Double[]&,Double&,Double[]&,Double[]&)
GetTorusData(Double[]&,Double&,Double& ,Double[]&,Double[]&)PublicStepTranslator.StepSurface.GetTorusData (Double[]&,Double&,Double&,Double[]& ,Double[]&)
GetDegeneratedTorusData(Double[]& ,Double&,Double&,Double[]&,Double[]& ,Boolean&)PublicStepTranslator.StepSurface .GetDegeneratedTorusData(Double[]& ,Double&,Double&,Double[]&,Double[]& ,Boolean&)
GetTrimCurves(List<List<StepCurve>>&)PublicStepTranslator.StepSurface.GetTrimCurves (List<List<StepCurve>>&)
GetOffsetSurfaceData(StepSurface& ,Double&)PublicStepTranslator.StepSurface .GetOffsetSurfaceData(StepSurface& ,Double&)
SetOffsetSurfaceData(StepSurface,Double)PublicStepTranslator.StepSurface .SetOffsetSurfaceData(StepSurface,Double )
GetPolyloops(List<List<CartesianPoint>>& )PublicStepTranslator.StepSurface.GetPolyloops (List<List<CartesianPoint>>&)
getSurfacedata()PublicStepTranslator.StepSurface .getSurfacedata()
GetOrientation(List<List<Boolean>>&)PublicStepTranslator.StepSurface .GetOrientation(List<List<Boolean>>&)
SetTrimCurves(List<List<StepCurve>>)PublicStepTranslator.StepSurface.SetTrimCurves (List<List<StepCurve>>)
SetPolyLoops(List<List<CartesianPoint>>)PublicStepTranslator.StepSurface.SetPolyLoops (List<List<CartesianPoint>>)
.ctor(StepCurve,StepVector)PublicStepTranslator.SurfaceOfLinearExtrusion. .ctor(StepCurve,StepVector)
.ctor(StepCurve,StepAxis1Placement)PublicStepTranslator.SurfaceOfRevolution..ctor (StepCurve,StepAxis1Placement)
.ctor(StepAxis2Placement3D,Double,Double )PublicStepTranslator.StepTorus..ctor (StepAxis2Placement3D,Double,Double)
GetUnusedBlockName<T>(String,Dictionary <String,T>)devDept.Geometry.UtilityEx .GetUnusedBlockName<T>(String,Dictionary <String,T>)
GetEntitiesStats(IList<Entity> ,Dictionary<String,Block>,Int32&,Int32& ,Int32&)devDept.Geometry.UtilityEx .GetEntitiesStats(IList<Entity> ,Dictionary<String,Block>,Int32&,Int32& ,Int32&)
GetEntitiesStats(IList<Entity> ,Dictionary<String,Block>,Boolean)devDept.Geometry.UtilityEx .GetEntitiesStats(IList<Entity> ,Dictionary<String,Block>,Boolean)
GetReferencedBlocksNames(IList<Entity> ,IDictionary<String,Block>)devDept.Geometry.UtilityEx .GetReferencedBlocksNames(IList<Entity> ,IDictionary<String,Block>)
get_Blocks()PublicdevDept.Eyeshot.ViewportLayout .get_Blocks()
set_Blocks(BlockDictionary)devDept.Eyeshot.ViewportLayout .set_Blocks(BlockDictionary)
get_Materials()PublicdevDept.Eyeshot.ViewportLayout .get_Materials()
set_Materials(MaterialDictionary)devDept.Eyeshot.ViewportLayout .set_Materials(MaterialDictionary)
get_Layers()PublicdevDept.Eyeshot.ViewportLayout .get_Layers()
set_Layers(LayerList)devDept.Eyeshot.ViewportLayout .set_Layers(LayerList)
get_LineTypes()PublicdevDept.Eyeshot.ViewportLayout .get_LineTypes()
set_LineTypes(LineTypeDictionary)devDept.Eyeshot.ViewportLayout .set_LineTypes(LineTypeDictionary)
get_TextStyles()PublicdevDept.Eyeshot.ViewportLayout .get_TextStyles()
set_TextStyles(TextStyleDictionary)devDept.Eyeshot.ViewportLayout .set_TextStyles(TextStyleDictionary)
ScaleForDPI()devDept.Eyeshot.ViewportLayout .ScaleForDPI()
get_Font()devDept.Eyeshot.ViewportLayout.get_Font( )
set_Font(Font)devDept.Eyeshot.ViewportLayout.set_Font (Font)
OnPaint(PaintEventArgs)InternaldevDept.Eyeshot.ViewportLayout.OnPaint (PaintEventArgs)
GetDefaultCursor()PublicdevDept.Eyeshot.ViewportLayout .GetDefaultCursor()
OnMouseDown(MouseEventArgs)InternaldevDept.Eyeshot.ViewportLayout .OnMouseDown(MouseEventArgs)
OnMouseMove(MouseEventArgs)InternaldevDept.Eyeshot.ViewportLayout .OnMouseMove(MouseEventArgs)
OnMouseUp(MouseEventArgs)InternaldevDept.Eyeshot.ViewportLayout.OnMouseUp (MouseEventArgs)
OnMouseWheel(MouseEventArgs)InternaldevDept.Eyeshot.ViewportLayout .OnMouseWheel(MouseEventArgs)
get_Grid()devDept.Eyeshot.ViewportLayout.get_Grid( )
get_Grids()devDept.Eyeshot.ViewportLayout.get_Grids ()
set_Grids(Grid[])devDept.Eyeshot.ViewportLayout.set_Grids (Grid[])
get_Background()devDept.Eyeshot.ViewportLayout .get_Background()
set_Background(BackgroundSettings)devDept.Eyeshot.ViewportLayout .set_Background(BackgroundSettings)
get_OriginSymbol()devDept.Eyeshot.ViewportLayout .get_OriginSymbol()
set_OriginSymbol(OriginSymbol)devDept.Eyeshot.ViewportLayout .set_OriginSymbol(OriginSymbol)
get_Legends()devDept.Eyeshot.ViewportLayout .get_Legends()
set_Legends(Legend[])devDept.Eyeshot.ViewportLayout .set_Legends(Legend[])
get_ToolBar()devDept.Eyeshot.ViewportLayout .get_ToolBar()
get_ToolBars()devDept.Eyeshot.ViewportLayout .get_ToolBars()
get_CoordinateSystemIcon()devDept.Eyeshot.ViewportLayout .get_CoordinateSystemIcon()
set_CoordinateSystemIcon (CoordinateSystemIcon)devDept.Eyeshot.ViewportLayout .set_CoordinateSystemIcon (CoordinateSystemIcon)
get_ViewCubeIcon()devDept.Eyeshot.ViewportLayout .get_ViewCubeIcon()
set_ViewCubeIcon(ViewCubeIcon)devDept.Eyeshot.ViewportLayout .set_ViewCubeIcon(ViewCubeIcon)
GetEntityPattern(Entity,Dictionary <String,LinePattern>,String,LayerList)devDept.Eyeshot.ViewportLayout .GetEntityPattern(Entity,Dictionary <String,LinePattern>,String,LayerList)
GetEntityLineWeight(Entity,Entity ,LayerList)devDept.Eyeshot.ViewportLayout .GetEntityLineWeight(Entity,Entity ,LayerList)
PageSetup()devDept.Eyeshot.ViewportLayout.PageSetup ()
OnMouseClick(MouseEventArgs)InternaldevDept.Eyeshot.ViewportLayout .OnMouseClick(MouseEventArgs)
OnKeyDown(KeyEventArgs)InternaldevDept.Eyeshot.ViewportLayout.OnKeyDown (KeyEventArgs)
OnKeyUp(KeyEventArgs)InternaldevDept.Eyeshot.ViewportLayout.OnKeyUp (KeyEventArgs)
.ctor(Cursor)devDept.Eyeshot .ViewportLayout+CursorContainer..ctor (Cursor)
get_Blocks()PublicdevDept.Eyeshot .ViewportLayout+DrawSceneParams .get_Blocks()
Init(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributes.Init(Color ,LayerList)
.ctor(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesColor..ctor (Color,LayerList)
Init(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesColor.Init (Color,LayerList)
GetMaterial(MaterialDictionary,String ,Color,Material,Boolean,ViewportLayout ,Entity)devDept.Eyeshot .ViewportLayout+GfxAttributesColor .GetMaterial(MaterialDictionary,String ,Color,Material,Boolean,ViewportLayout ,Entity)
.ctor(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesWire..ctor (Color,LayerList)
Init(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesWire.Init (Color,LayerList)
.ctor(Color,LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesRendered. .ctor(Color,LayerList)
.ctor(LayerList)devDept.Eyeshot .ViewportLayout+GfxAttributesMaterialFla t..ctor(LayerList)
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],Legend[],displayType ,Boolean,Boolean,Boolean,Boolean,Grid ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,viewType)devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],Legend[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,viewType)
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],Legend[],displayType ,Boolean,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,viewType)devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],Legend[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,viewType)
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],Legend[],displayType ,Boolean,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,viewType)devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],Legend[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,viewType)
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],Legend[],displayType ,Boolean,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,Viewport+SavedViewsManager )devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],Legend[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,Viewport+SavedViewsManager )
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],Legend[],displayType ,Boolean,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,Viewport+SavedViewsManager ,viewType)devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],Legend[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid[] ,OriginSymbol,Boolean,RotateSettings ,ZoomSettings,PanSettings ,NavigationSettings,CoordinateSystemIcon ,ViewCubeIcon,Viewport+SavedViewsManager ,viewType)
.ctor(Point,Size,BackgroundSettings ,Camera,ToolBar[],displayType,Boolean ,Boolean,Boolean,Boolean,Grid[],Boolean ,RotateSettings,ZoomSettings,PanSettings ,NavigationSettings ,Viewport+SavedViewsManager,viewType)devDept.Eyeshot.Viewport..ctor(Point ,Size,BackgroundSettings,Camera ,ToolBar[],displayType,Boolean,Boolean ,Boolean,Boolean,Grid[],Boolean ,RotateSettings,ZoomSettings,PanSettings ,NavigationSettings ,Viewport+SavedViewsManager,viewType)
get_ToolBar()devDept.Eyeshot.Viewport.get_ToolBar()
get_ToolBars()PublicdevDept.Eyeshot.Viewport.get_ToolBars()
set_ToolBars(ToolBar[])devDept.Eyeshot.Viewport.set_ToolBars (ToolBar[])
get_Grids()PublicdevDept.Eyeshot.Viewport.get_Grids()
set_Grids(Grid[])devDept.Eyeshot.Viewport.set_Grids (Grid[])
get_Legends()PublicdevDept.Eyeshot.Viewport.get_Legends()
set_Legends(Legend[])devDept.Eyeshot.Viewport.set_Legends (Legend[])
ScaleForDPI()devDept.Eyeshot.Viewport.ScaleForDPI()
Add(Viewport)devDept.Eyeshot.ViewportList.Add (Viewport)
AddRange(IList)devDept.Eyeshot.ViewportList.AddRange (IList)
IndexOf(Viewport)devDept.Eyeshot.ViewportList.IndexOf (Viewport)
Insert(Int32,Viewport)devDept.Eyeshot.ViewportList.Insert (Int32,Viewport)
Remove(Viewport)devDept.Eyeshot.ViewportList.Remove (Viewport)
RemoveAt(Int32)devDept.Eyeshot.ViewportList.RemoveAt (Int32)
Contains(Viewport)devDept.Eyeshot.ViewportList.Contains (Viewport)
OnInsert(Int32,Object)devDept.Eyeshot.ViewportList.OnInsert (Int32,Object)
OnRemove(Int32,Object)devDept.Eyeshot.ViewportList.OnRemove (Int32,Object)
OnSet(Int32,Object,Object)devDept.Eyeshot.ViewportList.OnSet(Int32 ,Object,Object)
OnValidate(Object)devDept.Eyeshot.ViewportList.OnValidate (Object)
get_FrontColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_FrontColor()
set_FrontColor(Color)devDept.Eyeshot.ViewCubeIcon .set_FrontColor(Color)
get_BackColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_BackColor()
set_BackColor(Color)devDept.Eyeshot.ViewCubeIcon .set_BackColor(Color)
get_LeftColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_LeftColor()
set_LeftColor(Color)devDept.Eyeshot.ViewCubeIcon .set_LeftColor(Color)
get_RightColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_RightColor()
set_RightColor(Color)devDept.Eyeshot.ViewCubeIcon .set_RightColor(Color)
get_TopColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_TopColor()
set_TopColor(Color)devDept.Eyeshot.ViewCubeIcon .set_TopColor(Color)
get_BottomColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_BottomColor()
set_BottomColor(Color)devDept.Eyeshot.ViewCubeIcon .set_BottomColor(Color)
get_FrontRingColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_FrontRingColor()
set_FrontRingColor(Color)devDept.Eyeshot.ViewCubeIcon .set_FrontRingColor(Color)
get_BackRingColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_BackRingColor()
set_BackRingColor(Color)devDept.Eyeshot.ViewCubeIcon .set_BackRingColor(Color)
get_LeftRingColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_LeftRingColor()
set_LeftRingColor(Color)devDept.Eyeshot.ViewCubeIcon .set_LeftRingColor(Color)
get_RightRingColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_RightRingColor()
set_RightRingColor(Color)devDept.Eyeshot.ViewCubeIcon .set_RightRingColor(Color)
get_HighlightColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_HighlightColor()
set_HighlightColor(Color)devDept.Eyeshot.ViewCubeIcon .set_HighlightColor(Color)
.ctor(coordinateSystemPositionType ,Boolean,Color,Boolean,String,String ,String,String,String,String,Color,Color ,Color,Color,Color,Color,Char,Char,Char ,Char,Boolean,Color,Color,Int32,Boolean ,Boolean,Image,Image,Image,Image,Image ,Image,Boolean)devDept.Eyeshot.ViewCubeIcon..ctor (coordinateSystemPositionType,Boolean ,Color,Boolean,String,String,String ,String,String,String,Color,Color,Color ,Color,Color,Color,Char,Char,Char,Char ,Boolean,Color,Color,Int32,Boolean ,Boolean,Image,Image,Image,Image,Image ,Image,Boolean)
get_TextColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_TextColor()
set_TextColor(Color)devDept.Eyeshot.ViewCubeIcon .set_TextColor(Color)
get_EdgeColor()PublicdevDept.Eyeshot.ViewCubeIcon .get_EdgeColor()
set_EdgeColor(Color)devDept.Eyeshot.ViewCubeIcon .set_EdgeColor(Color)
ScaleForDPI()devDept.Eyeshot.ViewCubeIcon.ScaleForDPI ()
get_Font()InternaldevDept.Eyeshot.ViewCubeIcon.get_Font()
set_Font(Font)devDept.Eyeshot.ViewCubeIcon.set_Font (Font)
get_FrontImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_FrontImage()
set_FrontImage(Image)devDept.Eyeshot.ViewCubeIcon .set_FrontImage(Image)
get_BackImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_BackImage()
set_BackImage(Image)devDept.Eyeshot.ViewCubeIcon .set_BackImage(Image)
get_LeftImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_LeftImage()
set_LeftImage(Image)devDept.Eyeshot.ViewCubeIcon .set_LeftImage(Image)
get_RightImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_RightImage()
set_RightImage(Image)devDept.Eyeshot.ViewCubeIcon .set_RightImage(Image)
get_TopImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_TopImage()
set_TopImage(Image)devDept.Eyeshot.ViewCubeIcon .set_TopImage(Image)
get_BottomImage()PublicdevDept.Eyeshot.ViewCubeIcon .get_BottomImage()
set_BottomImage(Image)devDept.Eyeshot.ViewCubeIcon .set_BottomImage(Image)
SetImages(Image[])devDept.Eyeshot.ViewCubeIcon.SetImages (Image[])
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot .ViewCubeIcon+ViewCubePartEntity .EstimateBoundingBox(Dictionary<String ,Block>)
get_Color()PublicdevDept.Eyeshot.BorderSettings.get_Color ()
set_Color(Color)devDept.Eyeshot.BorderSettings.set_Color (Color)
.ctor(MouseButtons,modifierKeys)devDept.Eyeshot.MouseButton..ctor (MouseButtons,modifierKeys)
.ctor(Boolean,edgeColorMethodType,Color ,Single,Single,silhouettesDrawingType ,Boolean,shadowType,Image,Boolean ,Boolean,Single ,realisticShadowQualityType)devDept.Eyeshot .DisplayModeSettingsRendered..ctor (Boolean,edgeColorMethodType,Color ,Single,Single,silhouettesDrawingType ,Boolean,shadowType,Image,Boolean ,Boolean,Single ,realisticShadowQualityType)
get_EnvironmentMappingImage()PublicdevDept.Eyeshot .DisplayModeSettingsRendered .get_EnvironmentMappingImage()
set_EnvironmentMappingImage(Image)devDept.Eyeshot .DisplayModeSettingsRendered .set_EnvironmentMappingImage(Image)
.ctor(ViewportLayout,Single,Int32 ,Transformation,FontDataDictionary ,TextStyleDictionary,Dictionary<String ,LinePattern>)devDept.Eyeshot .GfxDrawForSelectionParams..ctor (ViewportLayout,Single,Int32 ,Transformation,FontDataDictionary ,TextStyleDictionary,Dictionary<String ,LinePattern>)
.ctor(ViewportLayout,Single,Int32 ,Transformation,FontDataDictionary ,TextStyleDictionary,Dictionary<String ,LinePattern>)devDept.Eyeshot.DrawParams..ctor (ViewportLayout,Single,Int32 ,Transformation,FontDataDictionary ,TextStyleDictionary,Dictionary<String ,LinePattern>)
get_TextStyles()PublicdevDept.Eyeshot.DrawParams .get_TextStyles()
set_TextStyles(TextStyleDictionary)devDept.Eyeshot.DrawParams .set_TextStyles(TextStyleDictionary)
get_LineTypes()PublicdevDept.Eyeshot.DrawParams.get_LineTypes ()
set_LineTypes(Dictionary<String ,LinePattern>)devDept.Eyeshot.DrawParams.set_LineTypes (Dictionary<String,LinePattern>)
get_Blocks()PublicdevDept.Eyeshot.DrawParams.get_Blocks()
set_Blocks(IDictionary<String,Block>)devDept.Eyeshot.DrawParams.set_Blocks (IDictionary<String,Block>)
get_Layers()PublicdevDept.Eyeshot.DrawParams.get_Layers()
set_Layers(LayerList)devDept.Eyeshot.DrawParams.set_Layers (LayerList)
get_materials()PublicdevDept.Eyeshot.RenderParams .get_materials()
set_materials(MaterialDictionary)devDept.Eyeshot.RenderParams .set_materials(MaterialDictionary)
.ctor(ViewportLayout,projectionType ,Double[],Int32[],Single ,FontDataDictionary,TextStyleDictionary ,Transformation,Dictionary<String,Block> ,Dictionary<String,LinePattern>)devDept.Eyeshot.DrawSilhouettesParams. .ctor(ViewportLayout,projectionType ,Double[],Int32[],Single ,FontDataDictionary,TextStyleDictionary ,Transformation,Dictionary<String,Block> ,Dictionary<String,LinePattern>)
get_Layers()PublicdevDept.Eyeshot.CompileParams.get_Layers ()
set_Layers(LayerList)devDept.Eyeshot.CompileParams.set_Layers (LayerList)
get_LineTypes()PublicdevDept.Eyeshot.CompileParams .get_LineTypes()
set_LineTypes(Dictionary<String ,LinePattern>)devDept.Eyeshot.CompileParams .set_LineTypes(Dictionary<String ,LinePattern>)
get_Blocks()PublicdevDept.Eyeshot.CompileParams.get_Blocks ()
set_Blocks(IDictionary<String,Block>)devDept.Eyeshot.CompileParams.set_Blocks (IDictionary<String,Block>)
UpdatePattern(Entity,Dictionary<String ,LinePattern>,LayerList)devDept.Eyeshot.CompileParams .UpdatePattern(Entity,Dictionary<String ,LinePattern>,LayerList)
get_TextStyles()PublicdevDept.Eyeshot.RegenParams .get_TextStyles()
get_Blocks()PublicdevDept.Eyeshot.TraversalParams .get_Blocks()
set_Blocks(IDictionary<String,Block>)devDept.Eyeshot.TraversalParams .set_Blocks(IDictionary<String,Block>)
.ctor(Transformation,IDictionary<String ,Block>)devDept.Eyeshot.TraversalParams..ctor (Transformation,IDictionary<String,Block >)
.ctor(BlockReference,IDictionary<String ,Block>)devDept.Eyeshot.TraversalParams..ctor (BlockReference,IDictionary<String,Block >)
.ctor(StringBuilder,Transformation ,LayerListWithMapping,IDictionary<String ,Material>,Material,Double,Double ,IDictionary<String,Block>)devDept.Eyeshot.WriteWebGLParams..ctor (StringBuilder,Transformation ,LayerListWithMapping,IDictionary<String ,Material>,Material,Double,Double ,IDictionary<String,Block>)
get_Blocks()PublicdevDept.Eyeshot .PreProcessSilhouettesParams.get_Blocks( )
set_Blocks(IDictionary<String,Block>)devDept.Eyeshot .PreProcessSilhouettesParams.set_Blocks (IDictionary<String,Block>)
GetDefaultToolBars()PublicdevDept.Eyeshot.ToolBar .GetDefaultToolBars()
.ctor(ToolBar+positionType,Boolean ,ToolBarButton[])devDept.Eyeshot.ToolBar..ctor (ToolBar+positionType,Boolean ,ToolBarButton[])
get_HighlightColor()PublicdevDept.Eyeshot.ButtonSettings .get_HighlightColor()
set_HighlightColor(Color)devDept.Eyeshot.ButtonSettings .set_HighlightColor(Color)
.ctor(Image,String,String ,ToolBarButton+styleType,Boolean)devDept.Eyeshot.ToolBarButton..ctor (Image,String,String ,ToolBarButton+styleType,Boolean)
.ctor(Image,String,String ,ToolBarButton+styleType,Boolean,Boolean )devDept.Eyeshot.ToolBarButton..ctor (Image,String,String ,ToolBarButton+styleType,Boolean,Boolean )
.ctor(Image,String,String ,ToolBarButton+styleType,Boolean,Boolean ,Image,Image)devDept.Eyeshot.ToolBarButton..ctor (Image,String,String ,ToolBarButton+styleType,Boolean,Boolean ,Image,Image)
get_Name()devDept.Eyeshot.ToolBarButton.get_Name()
set_Name(String)devDept.Eyeshot.ToolBarButton.set_Name (String)
get_Image()PublicdevDept.Eyeshot.ToolBarButton.get_Image( )
set_Image(Image)devDept.Eyeshot.ToolBarButton.set_Image (Image)
get_HoverImage()PublicdevDept.Eyeshot.ToolBarButton .get_HoverImage()
set_HoverImage(Image)devDept.Eyeshot.ToolBarButton .set_HoverImage(Image)
get_DownImage()PublicdevDept.Eyeshot.ToolBarButton .get_DownImage()
set_DownImage(Image)devDept.Eyeshot.ToolBarButton .set_DownImage(Image)
get_DisabledImage()PublicdevDept.Eyeshot.ToolBarButton .get_DisabledImage()
set_DisabledImage(Image)devDept.Eyeshot.ToolBarButton .set_DisabledImage(Image)
get_DisabledDownImage()PublicdevDept.Eyeshot.ToolBarButton .get_DisabledDownImage()
set_DisabledDownImage(Image)devDept.Eyeshot.ToolBarButton .set_DisabledDownImage(Image)
get_Tag()devDept.Eyeshot.ToolBarButton.get_Tag()
set_Tag(Object)devDept.Eyeshot.ToolBarButton.set_Tag (Object)
get_ParentToolBar()InternaldevDept.Eyeshot.ToolBarButtonList .get_ParentToolBar()
.ctor(ToolBar,ToolBarButton[])devDept.Eyeshot.ToolBarButtonList..ctor (ToolBar,ToolBarButton[])
Add(ToolBarButton)devDept.Eyeshot.ToolBarButtonList.Add (ToolBarButton)
AddRange(IEnumerable<ToolBarButton>)PublicdevDept.Eyeshot.ToolBarButtonList .AddRange(IEnumerable<ToolBarButton>)
IndexOf(ToolBarButton)devDept.Eyeshot.ToolBarButtonList .IndexOf(ToolBarButton)
Insert(Int32,ToolBarButton)devDept.Eyeshot.ToolBarButtonList.Insert (Int32,ToolBarButton)
Remove(ToolBarButton)devDept.Eyeshot.ToolBarButtonList.Remove (ToolBarButton)
Contains(ToolBarButton)devDept.Eyeshot.ToolBarButtonList .Contains(ToolBarButton)
OnInsert(Int32,Object)devDept.Eyeshot.ToolBarButtonList .OnInsert(Int32,Object)
OnRemove(Int32,Object)devDept.Eyeshot.ToolBarButtonList .OnRemove(Int32,Object)
OnSet(Int32,Object,Object)devDept.Eyeshot.ToolBarButtonList.OnSet (Int32,Object,Object)
OnValidate(Object)devDept.Eyeshot.ToolBarButtonList .OnValidate(Object)
ToArray()devDept.Eyeshot.ToolBarButtonList .ToArray()
GetObjectData(SerializationInfo ,StreamingContext)devDept.Eyeshot.ToolBarButtonList .GetObjectData(SerializationInfo ,StreamingContext)
.ctor(Image,String,String ,ToolBarButton+styleType,Boolean,Boolean )devDept.Eyeshot.DefaultToolBarButton. .ctor(Image,String,String ,ToolBarButton+styleType,Boolean,Boolean )
get_Image()PublicdevDept.Eyeshot.DefaultToolBarButton .get_Image()
set_Image(Image)devDept.Eyeshot.DefaultToolBarButton .set_Image(Image)
get_DownImage()PublicdevDept.Eyeshot.DefaultToolBarButton .get_DownImage()
set_DownImage(Image)devDept.Eyeshot.DefaultToolBarButton .set_DownImage(Image)
get_HoverImage()PublicdevDept.Eyeshot.DefaultToolBarButton .get_HoverImage()
set_HoverImage(Image)devDept.Eyeshot.DefaultToolBarButton .set_HoverImage(Image)
get_Name()devDept.Eyeshot.DefaultToolBarButton .get_Name()
set_Name(String)devDept.Eyeshot.DefaultToolBarButton .set_Name(String)
UpdateProgressAndCheckCanceled(Int32 ,Int32,String,BackgroundWorker ,DoWorkEventArgs,Boolean)devDept.Eyeshot.WorkUnit .UpdateProgressAndCheckCanceled(Int32 ,Int32,String,BackgroundWorker ,DoWorkEventArgs,Boolean)
UpdateProgressAndCheckCanceledParallel (Int32,String,BackgroundWorker ,DoWorkEventArgs)devDept.Eyeshot.WorkUnit .UpdateProgressAndCheckCanceledParallel (Int32,String,BackgroundWorker ,DoWorkEventArgs)
Canceled(BackgroundWorker ,DoWorkEventArgs)devDept.Eyeshot.WorkUnit.Canceled (BackgroundWorker,DoWorkEventArgs)
UpdateWorkerStatus(Int32,Int32,String ,BackgroundWorker,DoWorkEventArgs)devDept.Eyeshot.WorkUnit .UpdateWorkerStatus(Int32,Int32,String ,BackgroundWorker,DoWorkEventArgs)
get_BackColor()devDept.Eyeshot.ViewportLayoutBase .get_BackColor()
set_BackColor(Color)devDept.Eyeshot.ViewportLayoutBase .set_BackColor(Color)
get_BackgroundImage()devDept.Eyeshot.ViewportLayoutBase .get_BackgroundImage()
set_BackgroundImage(Image)devDept.Eyeshot.ViewportLayoutBase .set_BackgroundImage(Image)
get_BackgroundImageLayout()devDept.Eyeshot.ViewportLayoutBase .get_BackgroundImageLayout()
set_BackgroundImageLayout(ImageLayout)devDept.Eyeshot.ViewportLayoutBase .set_BackgroundImageLayout(ImageLayout)
set_ForeColor(Color)devDept.Eyeshot.ViewportLayoutBase .set_ForeColor(Color)
get_RightToLeft()devDept.Eyeshot.ViewportLayoutBase .get_RightToLeft()
set_RightToLeft(RightToLeft)devDept.Eyeshot.ViewportLayoutBase .set_RightToLeft(RightToLeft)
OnPaintBackground(PaintEventArgs)devDept.Eyeshot.ViewportLayoutBase .OnPaintBackground(PaintEventArgs)
BeginInit()devDept.Eyeshot.ViewportLayoutBase .BeginInit()
EndInit()devDept.Eyeshot.ViewportLayoutBase .EndInit()
get_DefaultSize()devDept.Eyeshot.ViewportLayoutBase .get_DefaultSize()
AddEntity(Entity,Int32,Color)devDept.Eyeshot.Block.AddEntity(Entity ,Int32,Color)
AddEntity(Entity,Int32)devDept.Eyeshot.Block.AddEntity(Entity ,Int32)
ScaleForDPI()devDept.Eyeshot.Legend.ScaleForDPI()
get_ColorTable()PublicdevDept.Eyeshot.Legend.get_ColorTable()
set_ColorTable(Color[])devDept.Eyeshot.Legend.set_ColorTable (Color[])
.ctor(Color[])devDept.Eyeshot.Legend..ctor(Color[])
.ctor(Double,Double,String,String,Point ,Size,Boolean,Boolean,Boolean,String ,Color,Color,Color,Color[])devDept.Eyeshot.Legend..ctor(Double ,Double,String,String,Point,Size,Boolean ,Boolean,Boolean,String,Color,Color ,Color,Color[])
.ctor(Double,Double,String,String,Point ,Size,Boolean,Boolean,Boolean,String ,Color,Color,Color,Color[],Boolean)devDept.Eyeshot.Legend..ctor(Double ,Double,String,String,Point,Size,Boolean ,Boolean,Boolean,String,Color,Color ,Color,Color[],Boolean)
.ctor(Double,Double,String,String,Point ,Size,Boolean,Boolean,Boolean,String ,Color,Color,Color,Color[],Boolean ,Boolean)devDept.Eyeshot.Legend..ctor(Double ,Double,String,String,Point,Size,Boolean ,Boolean,Boolean,String,Color,Color ,Color,Color[],Boolean,Boolean)
get_TextBackgroundColor()PublicdevDept.Eyeshot.Legend .get_TextBackgroundColor()
set_TextBackgroundColor(Color)devDept.Eyeshot.Legend .set_TextBackgroundColor(Color)
get_TextColor()PublicdevDept.Eyeshot.Legend.get_TextColor()
set_TextColor(Color)devDept.Eyeshot.Legend.set_TextColor (Color)
get_TitleColor()PublicdevDept.Eyeshot.Legend.get_TitleColor()
set_TitleColor(Color)devDept.Eyeshot.Legend.set_TitleColor (Color)
get_TextFont()InternaldevDept.Eyeshot.Legend.get_TextFont()
set_TextFont(Font)devDept.Eyeshot.Legend.set_TextFont(Font )
get_TitleFont()InternaldevDept.Eyeshot.Legend.get_TitleFont()
set_TitleFont(Font)devDept.Eyeshot.Legend.set_TitleFont (Font)
BuildGradient(Int32)PublicdevDept.Eyeshot.Legend.BuildGradient (Int32)
get_RedToBlue17()PublicdevDept.Eyeshot.Legend.get_RedToBlue17()
get_RedToBlue9()PublicdevDept.Eyeshot.Legend.get_RedToBlue9()
get_RedToBlue33()PublicdevDept.Eyeshot.Legend.get_RedToBlue33()
get_FactorOfSafety15()PublicdevDept.Eyeshot.Legend .get_FactorOfSafety15()
get_Color()PublicdevDept.Eyeshot.ProgressBar.get_Color()
set_Color(Color)devDept.Eyeshot.ProgressBar.set_Color (Color)
get_TextColor()PublicdevDept.Eyeshot.ProgressBar .get_TextColor()
set_TextColor(Color)devDept.Eyeshot.ProgressBar .set_TextColor(Color)
get_TextBackgroundColor()PublicdevDept.Eyeshot.ProgressBar .get_TextBackgroundColor()
set_TextBackgroundColor(Color)devDept.Eyeshot.ProgressBar .set_TextBackgroundColor(Color)
DrawCircular(RenderContextBase,Point2D ,Double,Double,Viewport)devDept.Eyeshot.ProgressBar.DrawCircular (RenderContextBase,Point2D,Double,Double ,Viewport)
DrawCircularWin10(RenderContextBase ,Point2D,Double,Double,Viewport)devDept.Eyeshot.ProgressBar .DrawCircularWin10(RenderContextBase ,Point2D,Double,Double,Viewport)
DrawLinear(RenderContextBase,Int32,Int32 ,Int32,Viewport)devDept.Eyeshot.ProgressBar.DrawLinear (RenderContextBase,Int32,Int32,Int32 ,Viewport)
DrawDocked(RenderContextBase,Int32,Int32 ,Viewport)devDept.Eyeshot.ProgressBar.DrawDocked (RenderContextBase,Int32,Int32,Viewport)
ScaleForDPI()devDept.Eyeshot.UserInterfaceBase .ScaleForDPI()
ScaleForDPI()devDept.Eyeshot.UserInterfaceSymbolBase .ScaleForDPI()
ScaleForDPI()devDept.Eyeshot.CoordinateSystemBase .ScaleForDPI()
get_LabelFont()InternaldevDept.Eyeshot.CoordinateSystemBase .get_LabelFont()
set_LabelFont(Font)devDept.Eyeshot.CoordinateSystemBase .set_LabelFont(Font)
get_LabelColor()PublicdevDept.Eyeshot.CoordinateSystemBase .get_LabelColor()
set_LabelColor(Color)devDept.Eyeshot.CoordinateSystemBase .set_LabelColor(Color)
get_ArrowColorX()PublicdevDept.Eyeshot.CoordinateSystemBase .get_ArrowColorX()
set_ArrowColorX(Color)devDept.Eyeshot.CoordinateSystemBase .set_ArrowColorX(Color)
get_ArrowColorY()PublicdevDept.Eyeshot.CoordinateSystemBase .get_ArrowColorY()
set_ArrowColorY(Color)devDept.Eyeshot.CoordinateSystemBase .set_ArrowColorY(Color)
get_ArrowColorZ()PublicdevDept.Eyeshot.CoordinateSystemBase .get_ArrowColorZ()
set_ArrowColorZ(Color)devDept.Eyeshot.CoordinateSystemBase .set_ArrowColorZ(Color)
get_LabelColor()PublicdevDept.Eyeshot.ObjectManipulator .get_LabelColor()
set_LabelColor(Color)devDept.Eyeshot.ObjectManipulator .set_LabelColor(Color)
get_LabelFont()InternaldevDept.Eyeshot.ObjectManipulator .get_LabelFont()
get_ArrowColorX()PublicdevDept.Eyeshot.ObjectManipulator .get_ArrowColorX()
set_ArrowColorX(Color)devDept.Eyeshot.ObjectManipulator .set_ArrowColorX(Color)
get_ArrowColorY()PublicdevDept.Eyeshot.ObjectManipulator .get_ArrowColorY()
set_ArrowColorY(Color)devDept.Eyeshot.ObjectManipulator .set_ArrowColorY(Color)
get_ArrowColorZ()PublicdevDept.Eyeshot.ObjectManipulator .get_ArrowColorZ()
set_ArrowColorZ(Color)devDept.Eyeshot.ObjectManipulator .set_ArrowColorZ(Color)
get_LastRegenCount()devDept.Eyeshot.EntityList .get_LastRegenCount()
ApplyRegen(Entity,RegenParams ,CompileParams)devDept.Eyeshot.EntityList.ApplyRegen (Entity,RegenParams,CompileParams)
ApplyRegenOnly(Entity,RegenParams)devDept.Eyeshot.EntityList .ApplyRegenOnly(Entity,RegenParams)
ApplyRegenOnlyParallel(Entity)devDept.Eyeshot.EntityList .ApplyRegenOnlyParallel(Entity)
ApplyCompileOnly(Entity,CompileParams)devDept.Eyeshot.EntityList .ApplyCompileOnly(Entity,CompileParams)
get_Parallel()devDept.Eyeshot.EntityList.get_Parallel( )
set_Parallel(Boolean)devDept.Eyeshot.EntityList.set_Parallel (Boolean)
Regen()devDept.Eyeshot.EntityList.Regen()
RegenAllCurved()devDept.Eyeshot.EntityList .RegenAllCurved()
RegenAllCurved(Double,Double)devDept.Eyeshot.EntityList .RegenAllCurved(Double,Double)
AddRange(IEnumerable<Entity>)devDept.Eyeshot.EntityList.AddRange (IEnumerable<Entity>)
GetStats(Dictionary<String,Block>,Int32& ,Int32&,Int32&)devDept.Eyeshot.EntityList.GetStats (Dictionary<String,Block>,Int32&,Int32& ,Int32&)
GetStats(Dictionary<String,Block> ,Boolean)devDept.Eyeshot.EntityList.GetStats (Dictionary<String,Block>,Boolean)
ReplaceBlockNames(Dictionary<String ,String>,IList<Entity>,Dictionary<String ,Block>&)devDept.Eyeshot.EntityList .ReplaceBlockNames(Dictionary<String ,String>,IList<Entity>,Dictionary<String ,Block>&)
AdjustBlockReferenceBockNames(Dictionary <String,String>,IList<Entity>)devDept.Eyeshot.EntityList .AdjustBlockReferenceBockNames (Dictionary<String,String>,IList<Entity> )
get_LineColor()PublicdevDept.Eyeshot.Grid.get_LineColor()
set_LineColor(Color)devDept.Eyeshot.Grid.set_LineColor(Color )
get_ColorAxisX()PublicdevDept.Eyeshot.Grid.get_ColorAxisX()
set_ColorAxisX(Color)devDept.Eyeshot.Grid.set_ColorAxisX (Color)
get_ColorAxisY()PublicdevDept.Eyeshot.Grid.get_ColorAxisY()
set_ColorAxisY(Color)devDept.Eyeshot.Grid.set_ColorAxisY (Color)
get_FillColor()PublicdevDept.Eyeshot.Grid.get_FillColor()
set_FillColor(Color)devDept.Eyeshot.Grid.set_FillColor(Color )
get_MajorLineColor()PublicdevDept.Eyeshot.Grid.get_MajorLineColor( )
set_MajorLineColor(Color)devDept.Eyeshot.Grid.set_MajorLineColor (Color)
get_Style()devDept.Eyeshot.AttributeReference .get_Style()
set_Style(String)devDept.Eyeshot.AttributeReference .set_Style(String)
get_LayerIndex()devDept.Eyeshot.AttributeReference .get_LayerIndex()
set_LayerIndex(Int32)devDept.Eyeshot.AttributeReference .set_LayerIndex(Int32)
ScaleForDPI()devDept.Eyeshot.Labels.Label.ScaleForDPI ()
get_Color()PublicdevDept.Eyeshot.Labels.Label.get_Color()
set_Color(Color)devDept.Eyeshot.Labels.Label.set_Color (Color)
ScaleForDPI()devDept.Eyeshot.Labels.TextOnly .ScaleForDPI()
get_LoadingText()devDept.Eyeshot.Translators .ReadFileAsync.get_LoadingText()
set_LoadingText(String)devDept.Eyeshot.Translators .ReadFileAsync.set_LoadingText(String)
get_LoadingEntitiesText()devDept.Eyeshot.Translators .ReadFileAsync.get_LoadingEntitiesText()
set_LoadingEntitiesText(String)devDept.Eyeshot.Translators .ReadFileAsync.set_LoadingEntitiesText (String)
AddToScene(ViewportLayout,Boolean,String )devDept.Eyeshot.Translators .ReadFileAsync.AddToScene(ViewportLayout ,Boolean,String)
get_Blocks()PublicdevDept.Eyeshot.Translators .ReadFileAsyncWithBlocks.get_Blocks()
set_Blocks(Dictionary<String,Block>)devDept.Eyeshot.Translators .ReadFileAsyncWithBlocks.set_Blocks (Dictionary<String,Block>)
get_LoadingBlocksText()devDept.Eyeshot.Translators .ReadFileAsyncWithBlocks .get_LoadingBlocksText()
set_LoadingBlocksText(String)devDept.Eyeshot.Translators .ReadFileAsyncWithBlocks .set_LoadingBlocksText(String)
AddToScene(ViewportLayout,Boolean,String )devDept.Eyeshot.Translators .ReadFileAsyncWithBlocks.AddToScene (ViewportLayout,Boolean,String)
FillLayersInternal(Dictionary<Int32 ,Int32>)devDept.Eyeshot.Translators .ReadFileAsyncWithBlocksAndLayers .FillLayersInternal(Dictionary<Int32 ,Int32>)
AddToScene(ViewportLayout,Boolean,String )devDept.Eyeshot.Translators .ReadFileAsyncWithBlocksAndLayers .AddToScene(ViewportLayout,Boolean ,String)
get_Materials()devDept.Eyeshot.Translators.ReadOBJ .get_Materials()
AddToScene(ViewportLayout,Boolean,String )devDept.Eyeshot.Translators.ReadOBJ .AddToScene(ViewportLayout,Boolean ,String)
AddToScene(ViewportLayout,String)devDept.Eyeshot.Translators.ReadOBJ .AddToScene(ViewportLayout,String)
FillMaterials(ViewportLayout)devDept.Eyeshot.Translators.ReadOBJ .FillMaterials(ViewportLayout)
get_SavingText()devDept.Eyeshot.Translators .WriteFileAsync.get_SavingText()
set_SavingText(String)devDept.Eyeshot.Translators .WriteFileAsync.set_SavingText(String)
get_SavingBlocksText()devDept.Eyeshot.Translators .WriteFileAsync.get_SavingBlocksText()
set_SavingBlocksText(String)devDept.Eyeshot.Translators .WriteFileAsync.set_SavingBlocksText (String)
get_SavingEntitiesText()devDept.Eyeshot.Translators .WriteFileAsync.get_SavingEntitiesText()
set_SavingEntitiesText(String)devDept.Eyeshot.Translators .WriteFileAsync.set_SavingEntitiesText (String)
.ctor(ViewportLayout,String)devDept.Eyeshot.Translators .WriteFileAsync..ctor(ViewportLayout ,String)
.ctor(ViewportLayout,Stream)devDept.Eyeshot.Translators .WriteFileAsync..ctor(ViewportLayout ,Stream)
InitLayers(IEnumerable<Layer>)devDept.Eyeshot.Translators .WriteFileAsync.InitLayers(IEnumerable <Layer>)
.ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,String,Boolean)devDept.Eyeshot.Translators.WriteOBJ. .ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,String,Boolean)
.ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,Stream,Boolean)devDept.Eyeshot.Translators.WriteOBJ. .ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,Stream,Boolean)
.ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,String,Double,Boolean)devDept.Eyeshot.Translators.WriteOBJ. .ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,String,Double,Boolean)
.ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,Stream,Double,Boolean)devDept.Eyeshot.Translators.WriteOBJ. .ctor(IList<Entity>,IEnumerable<Layer> ,IDictionary<String,Block>,IDictionary <String,Material>,Stream,Double,Boolean)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeam..ctor (Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeam..ctor (Color,Double,Double,Double,Double ,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double)devDept.Eyeshot.Fem.MaterialBeam..ctor (Color,Double,Double,Double,Double ,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double)devDept.Eyeshot.Fem.MaterialBeamSquare. .ctor(Color,Double,Double,Double,Double ,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeamRect. .ctor(Color,Double,Double,Double,Double ,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double,Double)devDept.Eyeshot.Fem .MaterialBeamHollowRect..ctor(Color ,Double,Double,Double,Double,Double ,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeamI..ctor (Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double)devDept.Eyeshot.Fem.MaterialBeamCircle. .ctor(Color,Double,Double,Double,Double ,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double)devDept.Eyeshot.Fem .MaterialBeamHollowCircle..ctor(Color ,Double,Double,Double,Double,Double ,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeamT..ctor (Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)
.ctor(Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)devDept.Eyeshot.Fem.MaterialBeamC..ctor (Color,Double,Double,Double,Double ,Double,Double,Double,Double,Double)
DrawDimension(DrawParams,Boolean)devDept.Eyeshot.Entities.AngularDim .DrawDimension(DrawParams,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.AngularDim .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.FastPointCloud .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Region .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Solid3D .EstimateBoundingBox(Dictionary<String ,Block>)
IntersectionCurvesInternal(Solid3D ,Solid3D,ICurve[]&,ICurve[]&,ICurve[]& ,Boolean)devDept.Eyeshot.Entities.Solid3D .IntersectionCurvesInternal(Solid3D ,Solid3D,ICurve[]&,ICurve[]&,ICurve[]& ,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Surface .EstimateBoundingBox(Dictionary<String ,Block>)
LocalApproximation(IList<Point3D>,Double ,Vector3D[]&)devDept.Eyeshot.Entities.Curve .LocalApproximation(IList<Point3D> ,Double,Vector3D[]&)
LocalInterpolation(IList<Point3D> ,Boolean)devDept.Eyeshot.Entities.Curve .LocalInterpolation(IList<Point3D> ,Boolean)
CubicSplineInterpolation<R>(IList<R>)devDept.Eyeshot.Entities.Curve .CubicSplineInterpolation<R>(IList<R>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Curve .EstimateBoundingBox(Dictionary<String ,Block>)
DrawDimension(DrawParams,Boolean)devDept.Eyeshot.Entities.OrdinateDim .DrawDimension(DrawParams,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.OrdinateDim .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Leader .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.CompositeCurve .EstimateBoundingBox(Dictionary<String ,Block>)
get_NumberOfDecimals()devDept.Eyeshot.Entities.Dimension .get_NumberOfDecimals()
set_NumberOfDecimals(Int32)devDept.Eyeshot.Entities.Dimension .set_NumberOfDecimals(Int32)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Dimension .EstimateBoundingBox(Dictionary<String ,Block>)
DrawDimension(DrawParams,Boolean)devDept.Eyeshot.Entities.LinearDim .DrawDimension(DrawParams,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.LinearDim .EstimateBoundingBox(Dictionary<String ,Block>)
DrawDimension(DrawParams,Boolean)devDept.Eyeshot.Entities.RadialDim .DrawDimension(DrawParams,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.RadialDim .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.FemMesh .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Mesh .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Solid .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Arc .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Bar .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Circle .EstimateBoundingBox(Dictionary<String ,Block>)
get_LayerIndex()devDept.Eyeshot.Entities.IEntity .get_LayerIndex()
set_LayerIndex(Int32)devDept.Eyeshot.Entities.IEntity .set_LayerIndex(Int32)
get_LayerIndex()devDept.Eyeshot.Entities.Entity .get_LayerIndex()
set_LayerIndex(Int32)devDept.Eyeshot.Entities.Entity .set_LayerIndex(Int32)
IsVisibleAndInFrustum(Stack <BlockReference>,LayerList ,attributeReferenceVisibilityType)devDept.Eyeshot.Entities.Entity .IsVisibleAndInFrustum(Stack <BlockReference>,LayerList ,attributeReferenceVisibilityType)
IsVisible(LayerList ,attributeReferenceVisibilityType)devDept.Eyeshot.Entities.Entity .IsVisible(LayerList ,attributeReferenceVisibilityType)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Entity .EstimateBoundingBox(Dictionary<String ,Block>)
WriteUsemtl(Int32,TextWriter,TextWriter ,LayerListWithMapping)devDept.Eyeshot.Entities.Entity .WriteUsemtl(Int32,TextWriter,TextWriter ,LayerListWithMapping)
SetStepLayerAndColor(StepEntity,Color ,Dictionary<Int32,List<StepEntity>> ,LayerListWithMapping)devDept.Eyeshot.Entities.Entity .SetStepLayerAndColor(StepEntity,Color ,Dictionary<Int32,List<StepEntity>> ,LayerListWithMapping)
get_SubdivisionLevel()PublicdevDept.Eyeshot.Entities.Joint .get_SubdivisionLevel()
set_SubdivisionLevel(UInt32)devDept.Eyeshot.Entities.Joint .set_SubdivisionLevel(UInt32)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Joint .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Line .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Point .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.LinearPath .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Quad .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Triangle .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Picture .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Ellipse .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.PlanarEntity .EstimateBoundingBox(Dictionary<String ,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.EllipticalArc .EstimateBoundingBox(Dictionary<String ,Block>)
GetFullTransformation<T>(IDictionary <String,T>)devDept.Eyeshot.Entities.BlockReference .GetFullTransformation<T>(IDictionary <String,T>)
.ctor(Double,Double,Double,String ,linearUnitsType,IDictionary<String ,Block>,Double)devDept.Eyeshot.Entities.BlockReference. .ctor(Double,Double,Double,String ,linearUnitsType,IDictionary<String ,Block>,Double)
.ctor(Transformation,String ,linearUnitsType,IDictionary<String ,Block>)devDept.Eyeshot.Entities.BlockReference. .ctor(Transformation,String ,linearUnitsType,IDictionary<String ,Block>)
GetBlockUnits(BlockDictionary)devDept.Eyeshot.Entities.BlockReference .GetBlockUnits(BlockDictionary)
GetEntities(IDictionary<String,Block>)devDept.Eyeshot.Entities.BlockReference .GetEntities(IDictionary<String,Block>)
Explode(IDictionary<String,Block> ,Boolean)devDept.Eyeshot.Entities.BlockReference .Explode(IDictionary<String,Block> ,Boolean)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.BlockReference .EstimateBoundingBox(Dictionary<String ,Block>)
Transform(IList<Point3D>,Dictionary <String,Block>)devDept.Eyeshot.Entities.BlockReference .Transform(IList<Point3D>,Dictionary <String,Block>)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.PointCloud .EstimateBoundingBox(Dictionary<String ,Block>)
get_Style()devDept.Eyeshot.Entities.Text.get_Style( )
set_Style(String)devDept.Eyeshot.Entities.Text.set_Style (String)
EstimateBoundingBox(Dictionary<String ,Block>)devDept.Eyeshot.Entities.Text .EstimateBoundingBox(Dictionary<String ,Block>)
Sum:-
Average:-
Minimum:-
Maximum:-
Standard deviation:-
Variance:-