Commit cc921a80 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Реализована отрисовка интегралов (по замкнутому контуру, поверхности, объему) для textArt

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66919 954022d7-b5bf-4e40-9824-e11837661b57
parent 37e63bb8
This diff is collapsed.
......@@ -131,10 +131,10 @@ CSignRadical.prototype.draw = function(x, y, pGraphics, PDSE)
}
else // чтобы линии были четкие не в WordArt, рисуем знак радикала по заданному пути линиями нужной толщины
{
var intGrid = pGraphics.GetIntegerGrid();
pGraphics.SetIntegerGrid(true); // для того чтобы линии были отрисованы четко (неразмыто)
var intGrid = PDSE.Graphics.GetIntegerGrid();
PDSE.Graphics.SetIntegerGrid(true); // для того чтобы линии были отрисованы четко (неразмыто)
pGraphics.p_width(penW3*1000);
PDSE.Graphics.p_width(penW3*1000);
PDSE.Graphics._m(xx2, yy2);
PDSE.Graphics._l(xx3, yy3);
......@@ -145,7 +145,7 @@ CSignRadical.prototype.draw = function(x, y, pGraphics, PDSE)
PDSE.Graphics.ds();
pGraphics.SetIntegerGrid(intGrid);
PDSE.Graphics.SetIntegerGrid(intGrid);
}
PDSE.Graphics._s();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment